16 lines
366 B
C#
16 lines
366 B
C#
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; }
|
|
}
|
|
}
|