feat(dal): тестирование инициатора

This commit is contained in:
Mikhail Trubnikov
2024-10-07 17:00:56 +10:00
parent 03daa08f13
commit a0e71c9948
3 changed files with 58 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
using PARR.Constants;
namespace PARR.DAL.Models.Base.History.Base
{
public class HistoryInitiator : IHistoryInitiator
{
public string? InitiatorIp { get; set; }
public ParrComponentsEnum? InitiatorParrComponentId { get;set; }
public string? InitiatorComment { get; set; }
}
}