Api/NetinaShop.Domain/Entities/Users/UserAddress.cs

14 lines
580 B
C#
Raw Normal View History

2023-12-16 20:25:12 +03:30
namespace NetinaShop.Domain.Entities.Users;
public class UserAddress : ApiEntity
{
public string Address { get; internal set; } = string.Empty;
public string PostalCode { get; internal set; } = string.Empty;
public string ReceiverFullName { get; internal set; } = string.Empty;
public string ReceiverPhoneNumber { get; internal set; } = string.Empty;
public float LocationLat { get; internal set; }
public float LocationLong { get; internal set; }
public Guid UserId { get; internal set; }
public ApplicationUser? User { get; internal set; }
}