12 lines
302 B
C#
12 lines
302 B
C#
using PARR.Constants;
|
|
|
|
namespace PARR.Common.Domain
|
|
{
|
|
public class HistoryInitiator : IHistoryInitiator
|
|
{
|
|
public string? InitiatorIp { get; set; }
|
|
public ParrComponentsEnum? InitiatorParrComponentId { get; set; }
|
|
public string? InitiatorComment { get; set; }
|
|
}
|
|
}
|