Initial Brisk Unity SDK project

This commit is contained in:
2026-04-10 22:04:51 +08:00
commit 47f9a8bafa
171 changed files with 11091 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
public class BriskApiException : BriskException
{
public BriskApiException(int httpStatus, int code, string serverMessage) : base(serverMessage)
{
HttpStatus = httpStatus;
Code = code;
ServerMessage = serverMessage;
}
public int HttpStatus { get; }
public int Code { get; }
public string ServerMessage { get; }
}