mirror of
https://github.com/rafi1212122/BLHX.Server.git
synced 2025-12-13 15:04:37 +01:00
11 lines
191 B
C#
11 lines
191 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace BLHX.Server.SDK.Models
|
|
{
|
|
class BaseResponse
|
|
{
|
|
[JsonPropertyName("result")]
|
|
public int Result { get; set; }
|
|
}
|
|
}
|