13 lines
447 B
C#
13 lines
447 B
C#
namespace Marco.Pms.Model.MongoDBModels.Masters
|
|
{
|
|
public class ExpensesStatusMasterMongoDB
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
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; }
|
|
public bool IsSystem { get; set; } = false;
|
|
}
|
|
}
|