feat: создана структура проекта, core, domain, infrastructure. Перенесены enum и task согласно архитектуры
This commit is contained in:
15
PARR.Domain/Entities/Base/History/ITemplateGeneralProps.cs
Normal file
15
PARR.Domain/Entities/Base/History/ITemplateGeneralProps.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace PARR.Domain.Entities.Base.History
|
||||
{
|
||||
public interface ITemplateGeneralProps
|
||||
{
|
||||
public string Name { get; set; }
|
||||
|
||||
public bool IsActiveTemplate { get; set; }
|
||||
|
||||
public bool IsActiveSchedule { get; set; }
|
||||
|
||||
public DateTimeOffset? LastRun { get; set; }
|
||||
|
||||
public DateTimeOffset NextRun { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user