Files
BeWoPlaner/Data/Utils/AppointmentSearchResult.cs
Lyndon 9ffcf8ed62 Views in Partials aufgeteilt
Intervallfinder hinzugefügt
2022-02-10 11:06:03 +01:00

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>();
}
}