forked from stevencohn/OneMore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CalendarPage.cs
46 lines (27 loc) · 872 Bytes
/
CalendarPage.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//************************************************************************************************
// Copyright © 2021 Steven M. Cohn. All Rights Reserved.
//************************************************************************************************
namespace OneMoreCalendar
{
using System;
using System.Collections.Generic;
using System.Drawing;
/// <summary>
///
/// </summary>
internal class CalendarPages : List<CalendarPage> { }
/// <summary>
///
/// </summary>
internal class CalendarPage
{
public string PageID { get; set; }
public string Path { get; set; }
public string Title { get; set; }
public DateTime Created { get; set; }
public DateTime Modified { get; set; }
public bool IsDeleted { get; set; }
public Rectangle Bounds { get; set; } = Rectangle.Empty;
public bool HasReminders { get; set; }
}
}