using Microsoft.Extensions.Caching.Memory; namespace YLErp { /// /// /// internal static class InnerHelper { public static readonly MemoryCache MemoryCache; static InnerHelper() { MemoryCache = new MemoryCache(new MemoryCacheOptions()); } } }