Files
BeWoPlaner/BeWo/Scheduler/IBeWoAppointment.cs

31 lines
592 B
C#

using System;
using System.Collections.Generic;
namespace BeWo.Scheduler
{
public interface IBeWoAppointment
{
object Id { get; set; }
DateTime Start { get; set;}
DateTime End { get; set;}
string Subject { get; set;}
string Description { get; set; }
string Location { get; set; }
bool AllDay { get; set; }
int EventType { get; set; }
string RecurrenceInfo { get; set; }
Dictionary<string, object> CustomFields { get; }
long? LabelKey { get; set; }
}
}