22 lines
605 B
C#
22 lines
605 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
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);
|
|
}
|
|
}
|
|
} |