17 lines
330 B
C#
17 lines
330 B
C#
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;
|
|
}
|
|
}
|
|
} |