You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
494 B
20 lines
494 B
using System.Collections.Generic;
|
|
using Volo.Abp.MultiTenancy;
|
|
|
|
namespace LY.MicroService.PlatformManagement.MultiTenancy;
|
|
|
|
[IgnoreMultiTenancy]
|
|
public class TenantConfigurationCacheItem
|
|
{
|
|
public List<TenantConfiguration> Tenants { get; set; }
|
|
|
|
public TenantConfigurationCacheItem()
|
|
{
|
|
Tenants = new List<TenantConfiguration>();
|
|
}
|
|
|
|
public TenantConfigurationCacheItem(List<TenantConfiguration> tenants)
|
|
{
|
|
Tenants = tenants;
|
|
}
|
|
}
|
|
|