mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
9 lines
226 B
C#
9 lines
226 B
C#
namespace EggLink.DanhengServer.Database
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class DatabaseEntity(string tableName) : Attribute
|
|
{
|
|
public string TableName { get; set; } = tableName;
|
|
}
|
|
}
|