2026-04-13 16:58:30 +10:00
|
|
|
|
using PARR.Domain.Enums;
|
2024-10-07 17:00:56 +10:00
|
|
|
|
|
2026-04-13 16:58:30 +10:00
|
|
|
|
namespace PARR.Domain.Entities.Base.History
|
2024-10-07 17:00:56 +10:00
|
|
|
|
{
|
2026-04-13 16:58:30 +10:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Инициатор изменений, ведение истории
|
|
|
|
|
|
/// </summary>
|
2024-10-07 17:00:56 +10:00
|
|
|
|
public class HistoryInitiator : IHistoryInitiator
|
|
|
|
|
|
{
|
|
|
|
|
|
public string? InitiatorIp { get; set; }
|
2024-10-08 10:29:34 +10:00
|
|
|
|
public ParrComponentsEnum? InitiatorParrComponentId { get; set; }
|
2024-10-07 17:00:56 +10:00
|
|
|
|
public string? InitiatorComment { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|