Wonky.Client/Wonky.Entity/DTO/ESalesLineCreateDto.cs
2023-07-22 17:39:35 +02:00

10 lines
No EOL
294 B
C#

using System.ComponentModel.DataAnnotations;
namespace Wonky.Entity.DTO;
public class ESalesLineCreateDto
{
[Required] [MaxLength(20)] public string Sku { get; set; } = "";
[Required] public int Qty { get; set; }
[Required] [MaxLength(40)] public string Text { get; set; } = "";
}