18 lines
338 B
C#
18 lines
338 B
C#
using Microsoft.Extensions.Caching.Memory;
|
|
|
|
namespace YLErp
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
internal static class InnerHelper
|
|
{
|
|
public static readonly MemoryCache MemoryCache;
|
|
|
|
static InnerHelper()
|
|
{
|
|
MemoryCache = new MemoryCache(new MemoryCacheOptions());
|
|
}
|
|
}
|
|
}
|