namespace CppSharp.AST { /// /// Gives the ability to specify attributes to generate, for example ObsoleteAttribute. /// public class Attribute { public Attribute() { Type = typeof(object); Value = string.Empty; } public System.Type Type { get; set; } public string Value { get; set; } } }