Files
amrez-nova-eop-services-api/AMREZ.EOP.Domain/Entities/Customers/Address.cs
Thanakarn Klangkasame d4ab1cb592 Add Master Data
2025-10-10 16:22:06 +07:00

22 lines
872 B
C#

using AMREZ.EOP.Domain.Entities.Common;
namespace AMREZ.EOP.Domain.Entities.Customers;
public sealed class Address : BaseEntity
{
public string? Line1 { get; set; }
public string? Line2 { get; set; }
public string? Village { get; set; }
public string? Soi { get; set; }
public string? Road { get; set; }
public string? Subdistrict { get; set; }
public string? District { get; set; }
public string? Province { get; set; }
public string? PostalCode { get; set; }
public string CountryCode { get; set; } = "TH";
public bool Verified { get; set; }
public double? GeoLat { get; set; }
public double? GeoLng { get; set; }
public ICollection<CustomerAddress> CustomerLinks { get; set; } = new List<CustomerAddress>();
}