9 lines
211 B
C#
9 lines
211 B
C#
namespace LANCommander.Server.Models
|
|
{
|
|
public class DataTableColumn
|
|
{
|
|
public int Index { get; set; }
|
|
public string Name { get; set; }
|
|
public bool Visible { get; set; }
|
|
}
|
|
}
|