Ignore:
Timestamp:
07/29/20 20:02:58 (4 years ago)
Author:
DimitarSlezenkovski <dslezenkovski@…>
Branches:
master
Children:
a55ef91
Parents:
de18858
Message:

Add services

File:
1 edited

Legend:

Unmodified
Added
Removed
  • FarmatikoData/Models/Pandemic.cs

    rde18858 r4e72684  
    1010    {
    1111        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; }
    1220        public Pandemic(string Name, int TotalMK, int ActiveMK,
    1321            int DeathsMK, int NewMK, long TotalGlobal, long DeathsGlobal, long ActiveGlobal)
     
    2230            this.ActiveGlobal = ActiveGlobal;
    2331        }
    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; }
    3232    }
    3333}
Note: See TracChangeset for help on using the changeset viewer.