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