1234567891011121314151617181920212223242526272829 |
-
- using System;
- namespace IFramework.Serialization.DataTable
- {
-
-
-
- [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property, AllowMultiple = false, Inherited = false)]
- public class DataColumnNameAttribute : Attribute
- {
-
-
-
-
- public DataColumnNameAttribute(string name) { this.name = name; }
-
-
-
- public string name { get; private set; }
- }
- }
|