mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
21 lines
482 B
C#
21 lines
482 B
C#
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Represents a sorting description. Used in components that support sorting.
|
|
/// </summary>
|
|
public class SortDescriptor
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the property to sort by.
|
|
/// </summary>
|
|
/// <value>The property.</value>
|
|
public string? Property { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the sort order.
|
|
/// </summary>
|
|
/// <value>The sort order.</value>
|
|
public SortOrder? SortOrder { get; set; }
|
|
}
|
|
|