using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JinYuan.Models.HelperAttribute { public class DataGridViewColumn : Attribute { public string HeaderText { get; set; } public string Name { get; set; } public string DataPropertyName { get; set; } } }