feat: создана структура проекта, core, domain, infrastructure. Перенесены enum и task согласно архитектуры
This commit is contained in:
14
PARR.Domain/Entities/Base/History/HistoryInitiator.cs
Normal file
14
PARR.Domain/Entities/Base/History/HistoryInitiator.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using PARR.Domain.Enums;
|
||||
|
||||
namespace PARR.Domain.Entities.Base.History
|
||||
{
|
||||
/// <summary>
|
||||
/// Инициатор изменений, ведение истории
|
||||
/// </summary>
|
||||
public class HistoryInitiator : IHistoryInitiator
|
||||
{
|
||||
public string? InitiatorIp { get; set; }
|
||||
public ParrComponentsEnum? InitiatorParrComponentId { get; set; }
|
||||
public string? InitiatorComment { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user