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 786B

1234567891011121314151617181920212223
  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 string GoogleMapUrl { get; set; }
  8. public decimal Latitude { get; set; }
  9. public decimal Longitude { get; set; }
  10. public string UnitNumber { get; set; }
  11. public string ComplexName { get; set; }
  12. public string SteetNumber { get; set; }
  13. public string StreetName { get; set; }
  14. public string Suburb { get; set; }
  15. public string City { get; set; }
  16. public string Provice { get; set; }
  17. public string Country { get; set; }
  18. public string PostalCode { get; set; }
  19. public virtual User User { get; set; }
  20. }
  21. }