6a8274171a
- serializzazione yaml con indentazione giusta - oggetto contenitore x size - listvalues fix nomi vari tabelle
19 lines
465 B
C#
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!;
|
|
|
|
}
|
|
}
|