Add project files.

This commit is contained in:
Zura
2025-08-21 21:38:57 +02:00
parent 54ede2292c
commit dd2e9bf7d1
193 changed files with 32957 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace MareSynchronos.WebAPI.SignalR;
public class MareAuthFailureException : Exception
{
public MareAuthFailureException(string reason)
{
Reason = reason;
}
public string Reason { get; }
}