16 lines
397 B
C#
16 lines
397 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WorkFlowCheck.Common.Constants
|
|
{
|
|
public static class MemoryCacheNames
|
|
{
|
|
public const string UsersNamePrefix = "Users_";
|
|
public const string TranslationsNamePrefix = "Translations_";
|
|
public const string Languages = "Languages";
|
|
}
|
|
}
|