Files
DanhengServer-OpenSource/Common/Database/DatabaseEntity.cs
2024-02-24 22:42:19 +08:00

9 lines
226 B
C#

namespace EggLink.DanhengServer.Database
{
[AttributeUsage(AttributeTargets.Class)]
public class DatabaseEntity(string tableName) : Attribute
{
public string TableName { get; set; } = tableName;
}
}