mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 13:37:35 +08:00
cae7e144b3
* fix: selection
16 lines
266 B
C#
16 lines
266 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class RowNode<TData>
|
|
{
|
|
public TData Data { get; set; }
|
|
|
|
public int RowIndex { get; set; }
|
|
|
|
public bool Selected { get; set; }
|
|
}
|
|
}
|