using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace gehGassiApp.Domain.Common { /// /// Hilfsklasse für dynamische Sortierung /// public class DynamicSortOrder { /// /// Name der Eigenschaft z.B. UpdateAd oder ID oder StartDate usw. /// public string Property { get; set; } /// /// Sortierrichtung /// public SortDirection SortDirection { get; set; } public DynamicSortOrder() { Property = string.Empty; SortDirection = SortDirection.Ascending; } } }