12 lines
322 B
C#
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; }
|
|
}
|
|
}
|
|
|