namespace Radzen; /// /// Represents a sorting description. Used in components that support sorting. /// public class SortDescriptor { /// /// Gets or sets the property to sort by. /// /// The property. public string? Property { get; set; } /// /// Gets or sets the sort order. /// /// The sort order. public SortOrder? SortOrder { get; set; } }