15 lines
511 B
C#
15 lines
511 B
C#
namespace Marco.Pms.Model.Filters
|
|
{
|
|
public class DocumentFilter
|
|
{
|
|
public List<Guid>? UploadedByIds { get; set; }
|
|
public List<Guid>? DocumentCategoryIds { get; set; }
|
|
public List<Guid>? DocumentTypeIds { get; set; }
|
|
public List<Guid>? DocumentTagIds { get; set; }
|
|
public bool IsUploadedAt { get; set; } = true;
|
|
public bool? IsVerified { get; set; }
|
|
public DateTime? StartDate { get; set; }
|
|
public DateTime? EndDate { get; set; }
|
|
}
|
|
}
|