ant-design-blazor/components/table/IColumn.cs

26 lines
483 B
C#
Raw Normal View History

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 Index { get; set; }
public string Fixed { get; set; }
public string Title { get; set; }
public int Width { get; set; }
}
}