您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }