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