14 lines
396 B
C#
14 lines
396 B
C#
using Marco.Pms.Model.Utilities;
|
|
|
|
namespace Marco.Pms.Model.Master
|
|
{
|
|
public class ServicesMaster : TenantRelation
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
public bool IsSystem { get; set; } = false;
|
|
public bool IsActive { get; set; } = true;
|
|
}
|
|
}
|