14 lines
457 B
C#
14 lines
457 B
C#
namespace Marco.Pms.Model.Filters
|
|
{
|
|
public class PaymentRequestFilter
|
|
{
|
|
public List<Guid>? ProjectIds { get; set; }
|
|
public List<Guid>? StatusIds { get; set; }
|
|
public List<Guid>? CreatedByIds { get; set; }
|
|
public List<Guid>? CurrencyIds { get; set; }
|
|
public List<Guid>? ExpenseCategoryIds { get; set; }
|
|
public DateTime? StartDate { get; set; }
|
|
public DateTime? EndDate { get; set; }
|
|
}
|
|
}
|