18 lines
454 B
C#
18 lines
454 B
C#
using System;
|
|
namespace Hg.Internal.Domain.Config
|
|
{
|
|
internal class CacheKeys
|
|
{
|
|
public const string SsoOrganization = "sso_organization";
|
|
|
|
public const string CompanyVirtual = "cache_company_virtual";
|
|
|
|
public const string ParameterList = "cache_parameter_list";
|
|
|
|
public const string CsvrCallrecordCount = "csvr_callrecord_count";
|
|
|
|
public const string ZxdParameterList = "cache:hg:zxd_parameter_list";
|
|
}
|
|
}
|
|
|