Files
EstusShots-Net/EstusShots.Gtk/Controls/DataColumn.cs
2020-02-27 17:15:51 +01:00

16 lines
320 B
C#

namespace EstusShots.Gtk.Controls
{
public class DataColumn
{
public string PropertyName { get; set; }
public string Title { get; set; }
public DataColumn() { }
public DataColumn(string propertyName)
{
PropertyName = propertyName;
}
}
}