feat(api): TemplateHistoryController

This commit is contained in:
Mikhail Trubnikov
2024-10-08 13:53:57 +10:00
parent 4ba5ad3a14
commit 7155156f66
12 changed files with 254 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using PARR.Constants;
namespace PARR.API.Contracts.V1.Requests.Queries
{
public class TemplateHistoryQuery
{
/// <summary>
/// ИД шаблона
/// </summary>
public Guid? TemplateId { get; set; }
/// <summary>
/// IP инициатора
/// </summary>
public string? InitiatorIp { get; set; }
/// <summary>
/// ИД компонента ПАРР
/// </summary>
public ParrComponentsEnum? ParrComponentId { get; set; }
}
}