mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
12 lines
229 B
C#
12 lines
229 B
C#
using Microsoft.Data.Sqlite;
|
|
using SqlSugar;
|
|
|
|
namespace EggLink.DanhengServer.Database
|
|
{
|
|
public abstract class BaseDatabaseData
|
|
{
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public int Uid { get; set; }
|
|
}
|
|
}
|