using System.ComponentModel.DataAnnotations; namespace Wonky.Entity.DTO; public class UpdateCrmDto { public string CrmNotes { get; set; } = ""; public int Interval { get; set; } public int IsHidden { get; set; } [MaxLength(10)] public string LastVisit { get; set; } = ""; [MaxLength(10)] public string NextVisit { get; set; } = ""; [MaxLength(100)] public string Note { get; set; } = ""; }