Files
webdoorcreator/WebDoorCreator.Data/DTO/OrderDto.cs
T
2023-04-14 17:48:37 +02:00

19 lines
450 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; } = "";
public string elevation { get; set; } = "";
public string project { get; set; } = "";
public string PO { get; set; } = "";
public string Line { get; set; } = "";
}
}