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!; } }