Upgrade to .NET 10 and finalize foundation scaffold
This commit is contained in:
8
Domain/AppState.cs
Normal file
8
Domain/AppState.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace GameList.Domain;
|
||||
|
||||
public class AppState
|
||||
{
|
||||
public int Id { get; set; } = 1;
|
||||
public Phase CurrentPhase { get; set; } = Phase.Suggest;
|
||||
public DateTimeOffset UpdatedAt { get; set; } = DateTimeOffset.UtcNow;
|
||||
}
|
||||
Reference in New Issue
Block a user