using LotteryWebApp.Service; namespace LotteryWebApp.Models { public class ProfileViewModel { public Profile profile { get; set; } public UserStatus userStatus { get; set; } public string channel { get; set; } } public class ProfileChangePassword_ViewModel { public string code { get; set; } } public class ProfileProfileInfo_ViewModel { public string code { get; set; } public Profile profile { get; set; } public UserStatus userStatus { get; set; } } public class ProfileHowToPlay_ViewModel { public string termType { get; set; } } }