Initial commit

This commit is contained in:
2023-03-17 14:23:10 +01:00
commit 47535950b2
11 changed files with 138 additions and 0 deletions

12
Shared/Domain/Manhole.cs Normal file
View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.Domain
{
internal class Manhole
{
}
}

9
Shared/Shared.csproj Normal file
View File

@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>