Files
aviq-second-boilerplate/BethanysPieShopHRM.Shared/Domain/Country.cs
T
2026-03-22 00:29:34 +01:00

9 lines
187 B
C#

namespace BethanysPieShopHRM.Shared.Domain
{
public class Country
{
public int CountryId { get; set; }
public string Name { get; set; } = string.Empty;
}
}