forked from BlogEngine/BlogEngine.NET
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBlogRollItem.cs
More file actions
84 lines (71 loc) · 2.14 KB
/
BlogRollItem.cs
File metadata and controls
84 lines (71 loc) · 2.14 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
namespace BlogEngine.Core
{
using System;
/// <summary>
/// Blog roll item
/// </summary>
public class BlogRollItem
{
#region Constructors and Destructors
/// <summary>
/// Initializes a new instance of the <see cref = "BlogRollItem" /> class.
/// </summary>
public BlogRollItem()
{
Id = Guid.NewGuid();
Title = "";
Description = "";
Xfn = "";
}
/// <summary>
/// Initializes a new instance of the <see cref="BlogRollItem"/> class.
/// </summary>
/// <param name="title">
/// The title of the BlogRollItem.
/// </param>
/// <param name="description">
/// The description of the BlogRollItem.
/// </param>
/// <param name="blogUrl">
/// The <see cref="Uri"/> of the BlogRollItem.
/// </param>
public BlogRollItem(string title, string description, Uri blogUrl)
{
Id = Guid.NewGuid();
Title = title;
Description = description;
BlogUrl = blogUrl;
}
#endregion
#region Properties
/// <summary>
/// Item ID
/// </summary>
public Guid Id { get; set; }
/// <summary>
/// Gets or sets the BlogUrl of the object.
/// </summary>
public Uri BlogUrl { get; set; }
/// <summary>
/// Gets or sets the Description of the object.
/// </summary>
public string Description { get; set; }
/// <summary>
/// Gets or sets the FeedUrl of the object.
/// </summary>
public Uri FeedUrl { get; set; }
/// <summary>
/// Gets or sets the SortIndex of the object.
/// </summary>
public int SortIndex { get; set; }
/// <summary>
/// Gets or sets the Title of the object.
/// </summary>
public string Title { get; set; }
/// <summary>
/// Gets or sets the Xfn of the object.
/// </summary>
public string Xfn { get; set; }
#endregion
}
}