Files
BeWoPlaner/BeWo/Core/SortItem.cs

20 lines
441 B
C#
Raw Permalink Normal View History

2016-06-27 01:45:38 +02:00
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;
}
}
}