| 1234567891011121314151617181920212223 |
- using System.Collections.Generic;
- using Abp.AutoMapper;
- using WePlatform.MultiTenancy;
- namespace WePlatform.Models.Account
- {
- public class TenantSelectionViewModel
- {
- public string Action { get; set; }
- public List<TenantInfo> Tenants { get; set; }
- [AutoMapFrom(typeof(Tenant))]
- public class TenantInfo
- {
- public int Id { get; set; }
- public string TenancyName { get; set; }
- public string Name { get; set; }
- }
- }
- }
|