12 lines
352 B
C#
12 lines
352 B
C#
namespace Marco.Pms.Model.Master
|
|
{
|
|
public class CountryMaster
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; } = default!;
|
|
public string CountryCode { get; set; } = default!;
|
|
public string CurrencyCode { get; set; } = default!;
|
|
public string PhoneCode { get; set; } = default!;
|
|
}
|
|
}
|