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