Wonky.Client/Wonky.Entity/DTO/SupportDocumentEditView.cs
2023-04-26 17:00:53 +02:00

28 lines
No EOL
798 B
C#

using System.ComponentModel.DataAnnotations;
namespace Wonky.Entity.DTO;
public class SupportDocumentEditView
{
[Required(ErrorMessage = "Indhold mangler")]
public string Content { get; set; } = "";
[Required(ErrorMessage = "Beskrivelse mangler")]
[MaxLength(128, ErrorMessage = "Der er kun afsat 128 tegn.")]
public string Description { get; set; } = "";
public string DocumentDate { get; set; } = "";
public string DocumentId { get; set; } = "";
public string SupervisorId { get; set; } = "";
public string SupervisorName { get; set; } = "";
public string AdvisorId { get; set; } = "";
public string AdvisorName { get; set; } = "";
public string LastModifiedDate { get; set; } = "";
public string CountryCode { get; set; } = "";
}