ant-design-blazor/components/table/IRowSelection.cs
James Yeung 63d09f76a5 feat(module: table): add selection (#190)
* feat: add pagination and empty

* fix: indent

* feat(module: table): add checkbox selection

* feat(module: table): add radio selection

* feat: add selected rows
2020-06-05 16:06:23 +08:00

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; }
}
}