director/schedulable/Schedulable.cs
Adam R. Grey a6c03261f9 theoretically seems to read schedule as occurences properly
but for some reason 08-23 is showing up twice. so if I just assume that sabreDAV and/or nextcloud have some weird workaround, le'ts just let the 23rd roll around and never speak of this again >_>
2021-08-19 08:44:38 -04:00

12 lines
242 B
C#

using System;
using Ical.Net.CalendarComponents;
using Ical.Net.DataTypes;
namespace Schedulable
{
public class Schedulable
{
public CalendarEvent Event { get; set; }
public Occurrence Occurrence { get; set; }
}
}