Add Master Data
This commit is contained in:
22
AMREZ.EOP.Domain/Entities/Customers/Address.cs
Normal file
22
AMREZ.EOP.Domain/Entities/Customers/Address.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
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>();
|
||||
}
|
||||
Reference in New Issue
Block a user