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