Files
BeWoPlaner/Data/Utils/AppointmentSearchResult.cs

14 lines
361 B
C#
Raw Normal View History

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