22 lines
482 B
C#
22 lines
482 B
C#
using Marco.Pms.Model.Utilities;
|
|
|
|
namespace Marco.Pms.Model.Master
|
|
{
|
|
public class DocumentMaster :TenantRelation
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
public string Type { get; set; } = string.Empty;
|
|
|
|
public string ValidationException { get; set; } = string.Empty;
|
|
|
|
public bool IsRequired { get; set; } = false;
|
|
|
|
|
|
}
|
|
}
|