PIbd-31_Rodionov.I.A._COP_28/COP/RodionovLibrary/NonVisualComponents/HelperModels/ColumnParameters.cs

14 lines
357 B
C#
Raw Normal View History

2024-09-22 23:29:54 +04:00
namespace RodionovLibrary.NonVisualComponents.HelperModels
{
public class ColumnParameters
{
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; }
}
}