2024-10-07 17:00:56 +10:00
|
|
|
|
using PARR.Constants;
|
|
|
|
|
|
|
2024-10-08 10:29:34 +10:00
|
|
|
|
namespace PARR.Common.Domain
|
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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|