DataIgnoreAttribute.cs 636 B

123456789101112131415161718
  1. /*********************************************************************************
  2. *Author: OnClick
  3. *Version: 0.0.1
  4. *UnityVersion: 2018.3.11f1
  5. *Date: 2019-09-08
  6. *Description: IFramework
  7. *History: 2018.11--
  8. *********************************************************************************/
  9. using System;
  10. namespace IFramework.Serialization.DataTable
  11. {
  12. /// <summary>
  13. /// 数据表忽略的成员
  14. /// </summary>
  15. [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property, AllowMultiple = false, Inherited = false)]
  16. public class DataIgnoreAttribute: Attribute { }
  17. }