Files
BeWoPlaner/BeWo/Core/SortItem.cs
2016-06-27 01:45:38 +02:00

20 lines
441 B
C#

namespace BeWo.Core
{
public class SortItem
{
public SortItem(string displayName, string property)
{
this.DisplayName = displayName;
this.Property = property;
}
public string DisplayName { get; set; }
public string Property { get; set; }
public override string ToString()
{
return this.DisplayName;
}
}
}