Files
zaccaria.majid 6a8274171a fix:
- serializzazione yaml con indentazione giusta
- oggetto contenitore x size
- listvalues fix nomi vari tabelle
2023-04-18 16:51:18 +02:00

19 lines
465 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebDoorCreator.Data.DTO
{
public class OrderDto
{
public string customer { get; set; } = null!;
public string elevation { get; set; } = null!;
public string project { get; set; } = null!;
public string PO { get; set; } = null!;
public string Line { get; set; } = null!;
}
}