23 lines
541 B
C#
23 lines
541 B
C#
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; }
|
|
}
|
|
}
|