using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace UI.Framework.Entitys { public class DataViewAtrribute: Attribute { /// /// 显示名称 /// public string Name { get; set; } /// /// 宽度 /// public int Width { get; set; } } }