12 lines
372 B
C#
12 lines
372 B
C#
namespace Marco.Pms.Model.ViewModels.Master
|
|
{
|
|
public class ExpensesCategoryMasterVM
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
public bool NoOfPersonsRequired { get; set; }
|
|
public bool IsAttachmentRequried { get; set; }
|
|
public string Description { get; set; } = string.Empty;
|
|
}
|
|
}
|