using System; namespace ChaosBot.Attribute { [AttributeUsage(AttributeTargets.Property)] public class DBAutoIncrement : DBFieldAttribute { public override string GetSQLiteQuery() { return "AUTOINCREMENT"; } } }