Files
parr_api/PARR.EsppApi/Models/EsppOrder.cs
2023-10-23 16:17:42 +10:00

17 lines
391 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;
}
}