init
This commit is contained in:
commit
f4c0a40259
27 changed files with 2188 additions and 0 deletions
6
Foxnouns.Backend/Database/BaseModel.cs
Normal file
6
Foxnouns.Backend/Database/BaseModel.cs
Normal file
|
@ -0,0 +1,6 @@
|
|||
namespace Foxnouns.Backend.Database;
|
||||
|
||||
public abstract class BaseModel
|
||||
{
|
||||
public required Snowflake Id { get; init; } = SnowflakeGenerator.Instance.GenerateSnowflake();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue