11 lines
295 B
C#
11 lines
295 B
C#
|
namespace ComponentsLibrary.entities
|
|||
|
{
|
|||
|
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; }
|
|||
|
}
|
|||
|
}
|