14 lines
473 B
C#
14 lines
473 B
C#
namespace Marco.Pms.Model.Master
|
|
{
|
|
public class ExpensesStatusMaster
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
public string DisplayName { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
public string Color { get; set; } = string.Empty;
|
|
public bool IsSystem { get; set; } = false;
|
|
public bool IsActive { get; set; } = true;
|
|
}
|
|
}
|