Last change
on this file since 30a465f was 30a465f, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
553 bytes
|
Rev | Line | |
---|
[30a465f] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Text;
|
---|
| 4 | using Microsoft.EntityFrameworkCore;
|
---|
| 5 |
|
---|
| 6 | namespace 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.