using System.Collections.Generic; using Volo.Abp.MultiTenancy; namespace LY.MicroService.PlatformManagement.MultiTenancy; [IgnoreMultiTenancy] public class TenantConfigurationCacheItem { public List Tenants { get; set; } public TenantConfigurationCacheItem() { Tenants = new List(); } public TenantConfigurationCacheItem(List tenants) { Tenants = tenants; } }