17 lines
337 B
C#

namespace Marco.Pms.Model.Dtos.Master
{
public class DocumentMasterDto
{
public string? Name { get; set; }
public string? Description { get; set; }
public string? Type { get; set; }
public string? ValidationException { get; set; }
public bool IsRequired { get; set; }
}
}