Wonky.Client/Wonky.Entity/DTO/UpdateCrmDto.cs

13 lines
419 B
C#
Raw Permalink Normal View History

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