24 lines
437 B
C#
24 lines
437 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace UI.Framework.Entitys
|
|||
|
{
|
|||
|
public class DataViewAtrribute: Attribute
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 显示名称
|
|||
|
/// </summary>
|
|||
|
public string Name { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 宽度
|
|||
|
/// </summary>
|
|||
|
public int Width { get; set; }
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|