12 lines
404 B
C#
12 lines
404 B
C#
namespace Marco.Pms.Model.MongoDBModels.Masters
|
|
{
|
|
public class ExpenseCategoryMasterMongoDB
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public bool NoOfPersonsRequired { get; set; }
|
|
public string Description { get; set; } = string.Empty;
|
|
public string TenantId { get; set; } = string.Empty;
|
|
}
|
|
}
|