9 lines
187 B
C#
9 lines
187 B
C#
namespace BethanysPieShopHRM.Shared.Domain
|
|
{
|
|
public class Country
|
|
{
|
|
public int CountryId { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
}
|
|
}
|