Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Text;
|
---|
4 | using FarmatikoData.Base;
|
---|
5 | using Microsoft.EntityFrameworkCore;
|
---|
6 |
|
---|
7 | namespace 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.