Initial commit

This commit is contained in:
gamer147
2025-11-17 22:58:50 -05:00
commit 3bb8f7f158
63 changed files with 3733 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace FictionArchive.Common.Enums;
public enum Language
{
En,
Kr,
Ch,
Ja
}

View File

@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="HotChocolate.Abstractions" Version="15.1.11" />
<PackageReference Include="HotChocolate.Types" Version="15.1.11" />
</ItemGroup>
</Project>