18 lines
438 B
C#
18 lines
438 B
C#
using System.Collections.Generic;
|
|
|
|
using BeWo.Core;
|
|
|
|
namespace BeWo.View.Navigation.Sorter
|
|
{
|
|
internal class TeamSorter : AbstractSorter
|
|
{
|
|
public override List<SortItem> SortItems
|
|
{
|
|
get
|
|
{
|
|
var list = new List<SortItem>(4) {new SortItem("Name", "Name"), new SortItem("Teamleitung", "LeaderString")};
|
|
return list;
|
|
}
|
|
}
|
|
}
|
|
} |