using System; namespace NBF { [AttributeUsage(AttributeTargets.Class)] public class TableNameAttribute : Attribute { public string Name; public string Key; public TableNameAttribute(string name, string key = "id") { Name = name; Key = key; } } }