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

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