23 lines
473 B
C#
23 lines
473 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Controls.Models
|
|||
|
{
|
|||
|
public class ColumnInfo
|
|||
|
{
|
|||
|
public string PropertyName;
|
|||
|
public string Header;
|
|||
|
public int Width;
|
|||
|
|
|||
|
public ColumnInfo(string propertyName, string header, int width)
|
|||
|
{
|
|||
|
PropertyName = propertyName;
|
|||
|
Header = header;
|
|||
|
Width = width;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|