12 lines
280 B
C#
12 lines
280 B
C#
namespace RodionovLibrary.NonVisualComponents.HelperModels
|
|
{
|
|
public class ColumnParameters
|
|
{
|
|
public string Header { get; set; } = string.Empty;
|
|
|
|
public string PropertyName { get; set; } = string.Empty;
|
|
|
|
public double Width { get; set; }
|
|
}
|
|
}
|