2024-10-16 16:12:18 +04:00

12 lines
322 B
C#

namespace COP_1.cop_2.helpers
{
public class ColumnParams
{
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; }
}
}