IgnoreAttribute.cs 631 Bytes

using System;

namespace SQLite
{
    public class IgnoreAttribute : Attribute
    {
        public IgnoreAttribute()
        {

        }
    }

    public class BortherAttribute : Attribute
    {

    }
    public class ChildAttribute : Attribute
    {

    }

    public class PropertyIndexAttribute : Attribute
    {

        /// <summary>
        /// 标识
        /// </summary>
        public int Index { get; set; }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="index"></param>
        public PropertyIndexAttribute(int index)
        {
            Index = index;
        }
    }
}