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