mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-06 14:07:40 +08:00
63d09f76a5
* feat: add pagination and empty * fix: indent * feat(module: table): add checkbox selection * feat(module: table): add radio selection * feat: add selected rows
20 lines
396 B
C#
20 lines
396 B
C#
using Microsoft.AspNetCore.Components;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public interface IRowSelection
|
|
{
|
|
public int Index { get; set; }
|
|
|
|
public bool Checked { get; set; }
|
|
|
|
public bool Disabled { get; set; }
|
|
|
|
public void Check(bool @checked);
|
|
|
|
public IList<IRowSelection> RowSelections { get; set; }
|
|
}
|
|
}
|