feat: Перенесены внешние сервисы в Infrastructure. Удалены лишние проекты.
This commit is contained in:
14
PARR.Domain/Cache/Models/Base/IBaseCache.cs
Normal file
14
PARR.Domain/Cache/Models/Base/IBaseCache.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace PARR.Domain.Cache.Models.Base
|
||||
{
|
||||
/// <summary>
|
||||
/// Базовый интерфейс для КЭШ моделей
|
||||
/// </summary>
|
||||
public interface IBaseCache<T>
|
||||
{
|
||||
public T Data { get; set; }
|
||||
|
||||
public DateTimeOffset Timestamp { get; set; }
|
||||
|
||||
public string Source { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user