11 lines
289 B
C#
11 lines
289 B
C#
namespace Marco.Pms.Model.Filters
|
|
{
|
|
public class TaskFilter
|
|
{
|
|
public List<Guid>? BuildingIds { get; set; }
|
|
public List<Guid>? FloorIds { get; set; }
|
|
public List<Guid>? ActivityIds { get; set; }
|
|
public List<Guid>? ServiceIds { get; set; }
|
|
}
|
|
}
|