16 lines
551 B
C#
16 lines
551 B
C#
namespace Marco.Pms.Model.Filters
|
|
{
|
|
public class ImageFilter
|
|
{
|
|
public List<Guid>? BuildingIds { get; set; }
|
|
public List<Guid>? FloorIds { get; set; }
|
|
public List<Guid>? WorkAreaIds { get; set; }
|
|
public List<Guid>? WorkCategoryIds { get; set; }
|
|
public List<Guid>? ActivityIds { get; set; }
|
|
public List<Guid>? UploadedByIds { get; set; }
|
|
public List<Guid>? ServiceIds { get; set; }
|
|
public DateTime? StartDate { get; set; }
|
|
public DateTime? EndDate { get; set; }
|
|
}
|
|
}
|