Add DocumentMaster entity model with basic properties and tenant support
This commit is contained in:
parent
baa168ff8f
commit
536f6c5e85
21
Marco.Pms.Model/Master/DocumentMaster.cs
Normal file
21
Marco.Pms.Model/Master/DocumentMaster.cs
Normal file
@ -0,0 +1,21 @@
|
||||
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;
|
||||
|
||||
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user