Files
FeedCenter/Feeds/Category.cs
2014-04-30 17:47:28 -04:00

27 lines
412 B
C#

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; }
}
}
}