Files
mixtape/zero.Core/Caches/Internal/ApplicationCache.cs
T
2021-05-20 15:21:32 +02:00

11 lines
235 B
C#

using zero.Core.Database;
using zero.Core.Entities;
namespace zero.Core.Caches.Internal
{
public class ApplicationCache : InternalEntityCache<Application>
{
public ApplicationCache(IZeroStore store) : base(store) { }
}
}