Initial commit

This commit is contained in:
2014-04-30 17:47:28 -04:00
commit 60d6f93543
102 changed files with 11747 additions and 0 deletions

26
Feeds/Category.cs Normal file
View File

@@ -0,0 +1,26 @@
using System;
namespace FeedCenter
{
public partial class Category
{
#region Constructor
public Category()
{
ID = Guid.NewGuid();
}
#endregion
public bool IsDefault
{
get { return Name == "< default >"; }
}
public int SortKey
{
get { return IsDefault ? 0 : 1; }
}
}
}