Changeset 5d02859 for FarmatikoData/Models/Pandemic.cs
- Timestamp:
- 09/30/20 10:37:22 (4 years ago)
- Branches:
- master
- Children:
- 1454207
- Parents:
- 63d885e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
FarmatikoData/Models/Pandemic.cs
r63d885e r5d02859 1 1 using System; 2 2 using System.Collections.Generic; 3 using System.ComponentModel.DataAnnotations; 3 4 using System.Text; 4 5 using FarmatikoData.Base; … … 10 11 { 11 12 public Pandemic() { } 13 [Required] 12 14 public string Name { get; set; } 15 [Required] 13 16 public int TotalMK { get; set; } 17 [Required] 14 18 public int ActiveMK { get; set; } 19 [Required] 15 20 public int DeathsMK { get; set; } 21 [Required] 16 22 public int NewMK { get; set; } 23 [Required] 17 24 public long TotalGlobal { get; set; } 25 [Required] 18 26 public long DeathsGlobal { get; set; } 27 [Required] 19 28 public long ActiveGlobal { get; set; } 20 29 public Pandemic(string Name, int TotalMK, int ActiveMK,
Note:
See TracChangeset
for help on using the changeset viewer.