13 lines
286 B
C#
13 lines
286 B
C#
using System;
|
|
using System.Drawing;
|
|
|
|
namespace TBF.UI.Calendar
|
|
{
|
|
internal class CalendarEventInstance
|
|
{
|
|
public Config.CalendarEvent.ICalendarEvent Event { get; set; }
|
|
public Rectangle EventArea { get; set; }
|
|
public DateTime Date { get; set; }
|
|
}
|
|
}
|