ProfileViewModel.cs 657 B

123456789101112131415161718192021222324252627282930
  1. using LotteryWebApp.Service;
  2. namespace LotteryWebApp.Models
  3. {
  4. public class ProfileViewModel
  5. {
  6. public Profile profile { get; set; }
  7. public UserStatus userStatus { get; set; }
  8. public string channel { get; set; }
  9. }
  10. public class ProfileChangePassword_ViewModel
  11. {
  12. public string code { get; set; }
  13. }
  14. public class ProfileProfileInfo_ViewModel
  15. {
  16. public string code { get; set; }
  17. public Profile profile { get; set; }
  18. public UserStatus userStatus { get; set; }
  19. }
  20. public class ProfileHowToPlay_ViewModel
  21. {
  22. public string termType { get; set; }
  23. }
  24. }