Spelrundebilden påbörjad , kommunikation mellan bilder fungerar

This commit is contained in:
2025-09-17 12:21:11 +02:00
parent a955218c7a
commit 12002b65dd
13 changed files with 134 additions and 33 deletions

View File

@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\GreadyPoang.EntityLayer\GreadyPoang.EntityLayer.csproj" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,8 @@
using GreadyPoang.EntityLayer;
namespace GreadyPoang.Services;
public class ObjectMessageService : IObjectMessageService
{
public RoundBuilderGroup CurrentGroup { get; set; }
}

View File

@ -0,0 +1,9 @@
using GreadyPoang.EntityLayer;
namespace GreadyPoang.Services;
public interface IObjectMessageService
{
RoundBuilderGroup CurrentGroup { get; set; }
}