Add DocumentMasterDto for document input handling and validation

This commit is contained in:
Pramod Mahajan 2025-06-06 23:55:21 +05:30
parent 536f6c5e85
commit 83c3443c4f

View File

@ -0,0 +1,16 @@
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; }
}
}