| 123456789101112131415161718 |
- using Abp.AutoMapper;
- using WePlatform.BaseSystem.Sessions.Dto;
- namespace WePlatform.Models.Account
- {
- [AutoMapFrom(typeof(GetCurrentLoginInformationsOutput))]
- public class TenantChangeViewModel
- {
- public TenantLoginInfoDto Tenant { get; set; }
- public TenantChangeViewModel(string name = "", string tenancyName = "")
- {
- Tenant = Tenant ?? new TenantLoginInfoDto();
- Tenant.Name = name;
- Tenant.TenancyName = tenancyName;
- }
- }
- }
|