up
This commit is contained in:
@@ -903,6 +903,7 @@ export namespace main {
|
||||
smtp_user: string;
|
||||
smtp_password: string;
|
||||
from: string;
|
||||
reply_to: string;
|
||||
encryption: string;
|
||||
auth: boolean;
|
||||
auto_send: boolean;
|
||||
@@ -921,6 +922,7 @@ export namespace main {
|
||||
this.smtp_user = source["smtp_user"];
|
||||
this.smtp_password = source["smtp_password"];
|
||||
this.from = source["from"];
|
||||
this.reply_to = source["reply_to"];
|
||||
this.encryption = source["encryption"];
|
||||
this.auth = source["auth"];
|
||||
this.auto_send = source["auto_send"];
|
||||
@@ -1752,6 +1754,8 @@ export namespace qslcard {
|
||||
grunge?: number;
|
||||
bevel?: number;
|
||||
seed?: number;
|
||||
dark?: string;
|
||||
outer?: string;
|
||||
|
||||
static createFrom(source: any = {}) {
|
||||
return new FxParams(source);
|
||||
@@ -1772,6 +1776,8 @@ export namespace qslcard {
|
||||
this.grunge = source["grunge"];
|
||||
this.bevel = source["bevel"];
|
||||
this.seed = source["seed"];
|
||||
this.dark = source["dark"];
|
||||
this.outer = source["outer"];
|
||||
}
|
||||
}
|
||||
export class Halo {
|
||||
|
||||
Reference in New Issue
Block a user