14 lines
361 B
C#
14 lines
361 B
C#
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>();
|
|
}
|
|
}
|