mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
27 lines
591 B
C#
27 lines
591 B
C#
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Represents a group of data.
|
|
/// </summary>
|
|
public class Group
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the data.
|
|
/// </summary>
|
|
/// <value>The data.</value>
|
|
public GroupResult Data { get; set; } = new GroupResult();
|
|
|
|
/// <summary>
|
|
/// Gets or sets the group descriptor.
|
|
/// </summary>
|
|
/// <value>The group descriptor.</value>
|
|
public GroupDescriptor? GroupDescriptor { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the level.
|
|
/// </summary>
|
|
/// <value>The level.</value>
|
|
public int Level { get; set; }
|
|
}
|
|
|