14 lines
324 B
C#
14 lines
324 B
C#
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;
|
|
}
|
|
}
|