mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 10:43:59 +00:00
8 lines
164 B
C#
8 lines
164 B
C#
using SqlSugar;
|
|
|
|
namespace MikuSB.Database;
|
|
|
|
public abstract class BaseDatabaseDataHelper
|
|
{
|
|
[SugarColumn(IsPrimaryKey = true)] public int Uid { get; set; }
|
|
} |