using System.Collections.Generic; using BeWo.Data.Entities; using BS.Shared.Core; namespace BeWo.Data.Utils { public class AppointmentSearchResult { public List Appointments { get; set; } = new List(); public List Intervals { get; set; } = new List(); } }