PIbd-33_Radaev_A_V_COP-15/Library15/Models/CustomDataTableColumnParameter.cs

14 lines
324 B
C#
Raw Normal View History

2024-10-03 21:53:25 +04:00
namespace Library15.Models
{
public record CustomDataTableColumnParameter
{
public string HeaderName { get; init; } = string.Empty;
public int Width { get; init; } = 0;
public bool Visible { get; init; } = true;
public string PropertyName { get; init; } = string.Empty;
}
}