Wonky.Client/Wonky.Entity/DTO/ESalesLineCreateDto.cs

10 lines
294 B
C#
Raw Permalink Normal View History

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; } = "";
}