14 lines
357 B
C#
14 lines
357 B
C#
namespace RodionovLibrary.NonVisualComponents.HelperModels
|
|
{
|
|
public class ColumnParameters
|
|
{
|
|
public string FirstRowHeader { get; set; } = string.Empty;
|
|
|
|
public string SecondRowHeader { get; set; } = string.Empty;
|
|
|
|
public string PropertyName { get; set; } = string.Empty;
|
|
|
|
public double Width { get; set; }
|
|
}
|
|
}
|