mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-02-05 09:35:41 -05:00
27 lines
412 B
C#
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; }
|
|
}
|
|
}
|
|
}
|