source: FarmatikoData/Models/Pandemic.cs@ 1f041f6

Last change on this file since 1f041f6 was 30a465f, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago

Initial commit

  • Property mode set to 100644
File size: 553 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using Microsoft.EntityFrameworkCore;
5
6namespace FarmatikoData.Models
7{
8 public class Pandemic
9 {
10 public Pandemic() { }
11 public string Name { get; set; }
12 public int TotalMK { get; set; }
13 public int ActiveMK { get; set; }
14 public int DeathsMK { get; set; }
15 public int NewMK { get; set; }
16 public int TotalGlobal { get; set; }
17 public int DeathsGlobal { get; set; }
18 public int ActiveGlobal { get; set; }
19 }
20}
Note: See TracBrowser for help on using the repository browser.