using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.Academy._50L { public class AddAttribute : Attribute { public AddAttribute(string add) { Add = add; } public string Add { get; set; } } }