22 lines
872 B
C#
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>();
|
|
} |