19 lines
457 B
C#
19 lines
457 B
C#
namespace PARR.EsppApi.Models
|
|
{
|
|
/// <summary>
|
|
/// Модель наряда из еспп
|
|
/// </summary>
|
|
public class EsppOrder
|
|
{
|
|
public string Number { get; set; } = string.Empty;
|
|
|
|
public string? WorkGroup { get; set; }
|
|
|
|
public string Status { get; set; } = string.Empty;
|
|
|
|
public string ShortName { get; set; } = string.Empty;
|
|
|
|
public string TemplateName { get; set; } = string.Empty;
|
|
}
|
|
}
|