2024-09-22 23:29:54 +04:00
|
|
|
|
namespace RodionovLibrary.NonVisualComponents.HelperModels
|
|
|
|
|
{
|
|
|
|
|
public class ColumnParameters
|
|
|
|
|
{
|
2024-09-23 23:27:20 +04:00
|
|
|
|
public string FirstRowHeader { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string SecondRowHeader { get; set; } = string.Empty;
|
2024-09-22 23:29:54 +04:00
|
|
|
|
|
|
|
|
|
public string PropertyName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public double Width { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|