source: FarmatikoData/Models/Pandemic.cs@ a8ccc2c

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

Add migration, BaseEntity class and FarmatikoServices

  • Property mode set to 100644
File size: 592 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using FarmatikoData.Base;
5using Microsoft.EntityFrameworkCore;
6
7namespace FarmatikoData.Models
8{
9 public class Pandemic : BaseEntity
10 {
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 int TotalGlobal { get; set; }
18 public int DeathsGlobal { get; set; }
19 public int ActiveGlobal { get; set; }
20 }
21}
Note: See TracBrowser for help on using the repository browser.