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