-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathItem.cs
More file actions
34 lines (32 loc) · 988 Bytes
/
Copy pathItem.cs
File metadata and controls
34 lines (32 loc) · 988 Bytes
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
using System;
namespace CLReader
{
/// <summary>
/// Represents a feed item.
/// </summary>
public class Item
{
public string Link { get; set; }
public string Title { get; set; }
public string Content { get; set; }
public string SearchString { get; set; }
public bool Starred { get; set; }
public bool MarkClicked { get; set; }
public bool JennieClicked { get; set; }
public bool MarkBuy { get; set; }
public bool JennieBuy { get; set; }
public bool MarkInterested { get; set; }
public bool JennieInterested { get; set; }
public string WebSite { get; set; }
public DateTime PublishDate { get; set; }
public FeedType FeedType { get; set; }
public Item()
{
Link = "";
Title = "";
Content = "";
PublishDate = DateTime.Now;
FeedType = FeedType.RSS;
}
}
}