You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UserAddress.cs 832B

123456789101112131415161718192021222324
  1. namespace ProRestaurant.Models.Accounts
  2. {
  3. public class UserAddress : BaseObject
  4. {
  5. public int UserId { get; set; }
  6. public bool IsDefault { get; set; }
  7. public bool IsComplex { get; set; }
  8. public string GoogleMapUrl { get; set; }
  9. public decimal Latitude { get; set; }
  10. public decimal Longitude { get; set; }
  11. public string UnitNumber { get; set; }
  12. public string ComplexName { get; set; }
  13. public string StreetNumber { get; set; }
  14. public string StreetName { get; set; }
  15. public string Suburb { get; set; }
  16. public string City { get; set; }
  17. public string Province { get; set; }
  18. public string Country { get; set; }
  19. public string PostalCode { get; set; }
  20. public virtual User User { get; set; }
  21. }
  22. }