PIbd-32.-Gerimovich-I.M.-COP/Library15Gerimovich/Models/CustomDataTableColumnParameter.cs
platoff aeeee 7d7ce6cb91 try2
2024-09-17 12:41:48 +04:00

14 lines
334 B
C#

namespace Library15Gerimovich.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;
}
}