using System;
|
|
namespace OpenTap.Addin.Annotation
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class DataGridColAttribute : Attribute
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public string Header { get; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public string Width { get; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public bool IsReadOnly { get; }
|
public bool Parameterized { get; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public DataGridColAttribute(string Header, string Width, bool IsReadOnly, bool Parameterized = false)
|
{
|
this.Header = Header;
|
this.Width = Width;
|
this.IsReadOnly = IsReadOnly;
|
this.Parameterized = Parameterized;
|
}
|
}
|
}
|