namespace Events.WebAPI.Contract.DTOs; /// /// Contains requested items (based on filter, paging and sorting criteria), /// and the number of total items satisfying the filter /// (or count of all items if no filter is present) /// /// public class Items { public List? Data { get; set; } public int Count { get; set; } }