Add project files.

This commit is contained in:
2025-10-11 08:15:33 +02:00
commit 5d1e7858f2
140 changed files with 7567 additions and 0 deletions

View File

@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>
net9.0-android;
net9.0-ios;
net9.0-maccatalyst;
net9.0-windows10.0.19041
</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Gready_Poang.EntityLayer\Gready_Poang.EntityLayer.csproj" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,9 @@
using GreadyPoang.EntityLayer;
namespace GreadyPoang.Services;
public class ObjectMessageService : IObjectMessageService
{
public required RoundBuilderGroup CurrentGroup { get; set; }
public bool Delivered { get; set; } = false;
}

View File

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