Initial commit

This commit is contained in:
Holden
2026-06-17 22:27:12 -05:00
commit c7b8857208
35 changed files with 565 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
using Microsoft.EntityFrameworkCore;
namespace RecNet.Infrastructure.Persistence;
public class DatabaseContext : DbContext
{
}

View File

@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Aspire.Npgsql.EntityFrameworkCore.PostgreSQL" Version="13.4.5" />
</ItemGroup>
<ItemGroup>
<Folder Include="Persistence\Configurations\" />
</ItemGroup>
</Project>