Changeset de2baac for FarmatikoData/Models
- Timestamp:
- 07/24/20 17:30:55 (4 years ago)
- Branches:
- master
- Children:
- 4b342bb
- Parents:
- 785b8bd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
FarmatikoData/Models/Pandemic.cs
r785b8bd rde2baac 10 10 { 11 11 public Pandemic() { } 12 public Pandemic(string Name, int TotalMK, int ActiveMK, 13 int DeathsMK, int NewMK, long TotalGlobal, long DeathsGlobal, long ActiveGlobal) 14 { 15 this.Name = Name; 16 this.TotalMK = TotalMK; 17 this.ActiveMK = ActiveMK; 18 this.DeathsMK = DeathsMK; 19 this.NewMK = NewMK; 20 this.TotalGlobal = TotalGlobal; 21 this.DeathsGlobal = DeathsGlobal; 22 this.ActiveGlobal = ActiveGlobal; 23 } 12 24 public string Name { get; set; } 13 25 public int TotalMK { get; set; } … … 15 27 public int DeathsMK { get; set; } 16 28 public int NewMK { get; set; } 17 public intTotalGlobal { get; set; }18 public intDeathsGlobal { get; set; }19 public intActiveGlobal { get; set; }29 public long TotalGlobal { get; set; } 30 public long DeathsGlobal { get; set; } 31 public long ActiveGlobal { get; set; } 20 32 } 21 33 }
Note:
See TracChangeset
for help on using the changeset viewer.