using System; using System.Collections.Generic; using System.Text; using FarmatikoData.Base; using Microsoft.EntityFrameworkCore; namespace FarmatikoData.Models { public class Pandemic : BaseEntity { public Pandemic() { } public string Name { get; set; } public int TotalMK { get; set; } public int ActiveMK { get; set; } public int DeathsMK { get; set; } public int NewMK { get; set; } public long TotalGlobal { get; set; } public long DeathsGlobal { get; set; } public long ActiveGlobal { get; set; } public Pandemic(string Name, int TotalMK, int ActiveMK, int DeathsMK, int NewMK, long TotalGlobal, long DeathsGlobal, long ActiveGlobal) { this.Name = Name; this.TotalMK = TotalMK; this.ActiveMK = ActiveMK; this.DeathsMK = DeathsMK; this.NewMK = NewMK; this.TotalGlobal = TotalGlobal; this.DeathsGlobal = DeathsGlobal; this.ActiveGlobal = ActiveGlobal; } } }