This commit is contained in:
2026-06-13 01:34:45 +02:00
parent 408b29896c
commit 3cb2e466d8
21 changed files with 1285 additions and 130 deletions
+2
View File
@@ -1129,6 +1129,7 @@ export namespace main {
export class QSLEmailTemplates {
subject: string;
body: string;
auto_send: boolean;
static createFrom(source: any = {}) {
return new QSLEmailTemplates(source);
@@ -1138,6 +1139,7 @@ export namespace main {
if ('string' === typeof source) source = JSON.parse(source);
this.subject = source["subject"];
this.body = source["body"];
this.auto_send = source["auto_send"];
}
}
export class QSLFontInfo {