laatzen/LaaProductionWeb/LaaProductionWeb.Services/Models/OrderClientModel.cs
Stoyan Zlatev a5d86fd707 HeReport - date input, from - to
Test protocol - legend, test state
2023-04-11 13:15:00 +02:00

21 lines
435 B
C#

using System.Web;
namespace LaaProductionWeb.Services.Models
{
public class OrderClientModel
{
public int? OrderId { get; set; }
public int? ClientId { get; set; }
public string ClientName { get; set; }
public string Positions { get; set; }
public int? FileId { get; set; }
public string FileContent { get; set; }
public string Responsible { get; set; }
}
}