2025-06-18 10:29:25 +00:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
|
|
|
|
|
|
|
|
namespace Kurs.Platform.Entities;
|
|
|
|
|
|
|
|
|
|
public class Country : FullAuditedEntity<Guid>
|
|
|
|
|
{
|
|
|
|
|
public string Code { get; set; } // TR, US
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string GroupName { get; set; }
|
|
|
|
|
public string CurrencyCode { get; set; }
|
2025-06-27 07:15:36 +00:00
|
|
|
public int PhoneCode { get; set; }
|
2025-06-18 10:29:25 +00:00
|
|
|
public string TaxLabel { get; set; }
|
|
|
|
|
public bool ZipRequired { get; set; }
|
|
|
|
|
public bool StateRequired { get; set; }
|
|
|
|
|
|
2025-06-27 07:15:36 +00:00
|
|
|
public ICollection<City> Cities { get; set; }
|
2025-06-18 10:29:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class CountryGroup : FullAuditedEntity<Guid>
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
}
|