17 lines
394 B
C#
17 lines
394 B
C#
namespace PARR.EsppApi.Requests
|
|
{
|
|
/// <summary>
|
|
/// Изменить статус наряда
|
|
/// </summary>
|
|
internal class SetStatusRequest
|
|
{
|
|
public required string recordid { get; set; }
|
|
|
|
public required string status { get; set; }
|
|
|
|
public required string assignee { get; set; }
|
|
|
|
public required string resolution { get; set; }
|
|
}
|
|
}
|