/********************************************************************************* *Author: OnClick *Version: 0.0.1 *UnityVersion: 2018.3.11f1 *Date: 2019-09-08 *Description: IFramework *History: 2018.11-- *********************************************************************************/ using System; namespace IFramework.Serialization.DataTable { /// /// 设置数据表标题 /// [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property, AllowMultiple = false, Inherited = false)] public class DataColumnNameAttribute : Attribute { /// /// ctor /// /// 名称 public DataColumnNameAttribute(string name) { this.name = name; } /// /// 名称 /// public string name { get; private set; } } }