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

123456789101112131415161718192021
  1. namespace ProRestaurant.Models.Accounts
  2. {
  3. public class UserAddress : BaseObject
  4. {
  5. public int UserId { get; set; }
  6. public decimal Latitude { get; set; }
  7. public decimal Longitude { get; set; }
  8. public string UnitNumber { get; set; }
  9. public string ComplexName { get; set; }
  10. public string SteetNumber { get; set; }
  11. public string StreetName { get; set; }
  12. public string Suburb { get; set; }
  13. public string City { get; set; }
  14. public string Provice { get; set; }
  15. public string Country { get; set; }
  16. public string PostalCode { get; set; }
  17. public virtual User User { get; set; }
  18. }
  19. }