using System; namespace SQLite { public class IgnoreAttribute : Attribute { public IgnoreAttribute() { } } public class PropertyIndexAttribute : Attribute { /// <summary> /// 标识 /// </summary> public int Index { get; set; } /// <summary> /// /// </summary> /// <param name="index"></param> public PropertyIndexAttribute(int index) { Index = index; } } public class TimeAttribute : Attribute { } }