Uppdelningsläge

This commit is contained in:
2025-10-12 08:39:06 +02:00
parent c00819bec6
commit 02a26871c6
15 changed files with 85 additions and 30 deletions

View File

@ -1,7 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFrameworks>
net9.0-android;
net9.0-ios;
net9.0-maccatalyst;
net9.0-windows10.0.19041
</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

View File

@ -4,6 +4,6 @@ namespace GreadyPoang.Services;
public class ObjectMessageService : IObjectMessageService
{
public RoundBuilderGroup CurrentGroup { get; set; }
public required RoundBuilderGroup CurrentGroup { get; set; }
public bool Delivered { get; set; } = false;
}