accounts db & http sdk db impl

This commit is contained in:
rfi
2024-02-19 18:11:00 +07:00
parent 5e8f90b2e9
commit fea7b78126
8 changed files with 216 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
using System.Text.Json.Serialization;
namespace BLHX.Server.SDK.Models
{
class BaseResponse
{
[JsonPropertyName("result")]
public int Result { get; set; }
}
}