mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 13:37:35 +08:00
30 lines
567 B
C#
30 lines
567 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public interface IColumn
|
|
{
|
|
public ITable Table { get; set; }
|
|
|
|
public bool IsHeader { get; set; }
|
|
|
|
public bool IsPlaceholder { get; set; }
|
|
|
|
public bool IsColGroup { get; set; }
|
|
|
|
public int ColIndex { get; set; }
|
|
|
|
public int RowIndex { get; }
|
|
|
|
public string Fixed { get; set; }
|
|
|
|
public int CacheKey { get; set; }
|
|
|
|
public string Title { get; set; }
|
|
|
|
public int Width { get; set; }
|
|
}
|
|
}
|