using System;
using System.Collections.Generic;
namespace IwbZero.MultiTenancy
{
///
/// Used to store features of a Tenant in the cache.
///
[Serializable]
public class TenantFeatureCacheItem
{
///
/// The cache store name.
///
public const string CacheStoreName = "AbpZeroTenantFeatures";
///
/// Edition of the tenant.
///
public int? EditionId { get; set; }
///
/// Feature values.
///
public IDictionary FeatureValues { get; private set; }
///
/// Initializes a new instance of the class.
///
public TenantFeatureCacheItem()
{
FeatureValues = new Dictionary();
}
}
}