13 lines
390 B
C#
13 lines
390 B
C#
namespace Marco.Pms.Model.Utilities
|
|
{
|
|
public class ExpensesFilter
|
|
{
|
|
public List<Guid>? ProjectIds { get; set; }
|
|
public List<Guid>? StatusIds { get; set; }
|
|
public List<Guid>? CreatedByIds { get; set; }
|
|
public List<Guid>? PaidById { get; set; }
|
|
public DateTime? StartDate { get; set; }
|
|
public DateTime? EndDate { get; set; }
|
|
}
|
|
}
|