Wonky.Client/Wonky.Entity/DTO/KrvDocHeaderUpdateDto.cs
2023-05-17 13:59:39 +02:00

12 lines
No EOL
445 B
C#

using System.ComponentModel.DataAnnotations;
namespace Wonky.Entity.DTO;
public class KrvDocHeaderUpdateDto
{
[MaxLength(128)] public string ApprovedBy { get; set; } = "";
[MaxLength(10)] public string ApprovedDate { get; set; } = "";
[MaxLength(128)] public string AuthoredBy { get; set; } = "";
[MaxLength(128)] public string DocumentId { get; set; } = "";
[MaxLength(10)] public string FollowupDate { get; set; } = "";
}