11 lines
295 B
C#
Raw Normal View History

2024-10-28 20:23:38 +04:00
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; }
}
}