Files
BeWoPlaner/BeWo/View/Navigation/Sorter/WohnheimSorter.cs
Christian 9c97d6fe79 CB Merge
2019-07-12 17:36:37 +02:00

20 lines
462 B
C#

using System.Collections.Generic;
using BeWo.Core;
namespace BeWo.View.Navigation.Sorter
{
internal class WohnheimSorter : AbstractSorter
{
public override List<SortItem> SortItems
{
get
{
List<SortItem> list = new List<SortItem>();
list.Add(new SortItem("Name", "WohnheimName"));
return list;
}
}
}
}