fix: bugs
This commit is contained in:
@@ -3664,6 +3664,12 @@ export namespace qso {
|
||||
slots_confirmed: number;
|
||||
dxcc_worked: number;
|
||||
dxcc_confirmed: number;
|
||||
ph_worked: number;
|
||||
ph_confirmed: number;
|
||||
cw_worked: number;
|
||||
cw_confirmed: number;
|
||||
dig_worked: number;
|
||||
dig_confirmed: number;
|
||||
|
||||
static createFrom(source: any = {}) {
|
||||
return new SlotStats(source);
|
||||
@@ -3675,6 +3681,12 @@ export namespace qso {
|
||||
this.slots_confirmed = source["slots_confirmed"];
|
||||
this.dxcc_worked = source["dxcc_worked"];
|
||||
this.dxcc_confirmed = source["dxcc_confirmed"];
|
||||
this.ph_worked = source["ph_worked"];
|
||||
this.ph_confirmed = source["ph_confirmed"];
|
||||
this.cw_worked = source["cw_worked"];
|
||||
this.cw_confirmed = source["cw_confirmed"];
|
||||
this.dig_worked = source["dig_worked"];
|
||||
this.dig_confirmed = source["dig_confirmed"];
|
||||
}
|
||||
}
|
||||
export class Stats {
|
||||
|
||||
Reference in New Issue
Block a user