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