TourIAm/TIAMWebApp/Shared/Models/PopulationAgeStructureItem.cs

15 lines
487 B
C#

namespace TIAMWebApp.Shared.Application.Models
{
public class PopulationAgeStructureItem
{
public string AgeGroup { get; }
public string Gender { get; }
public string Country { get; }
public int Population { get; }
public PopulationAgeStructureItem(string ageGroup, string gender, string country, int population)
{
(AgeGroup, Gender, Country, Population) = (ageGroup, gender, country, population);
}
}
}