28 lines
727 B
C#
Executable File
28 lines
727 B
C#
Executable File
using Luski.net.JsonTypes.BaseTypes;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Luski.net.JsonTypes;
|
|
|
|
internal class FriendRequestResult : IncomingHTTP
|
|
{
|
|
[JsonPropertyName("channel")]
|
|
[JsonInclude]
|
|
public long? Channel { get; set; }
|
|
[JsonPropertyName("id")]
|
|
[JsonInclude]
|
|
public long? Id { get; set; }
|
|
[JsonPropertyName("result")]
|
|
[JsonInclude]
|
|
public bool? Result { get; set; }
|
|
}
|
|
|
|
[JsonSerializable(typeof(FriendRequestResult))]
|
|
[JsonSourceGenerationOptions(
|
|
GenerationMode = JsonSourceGenerationMode.Default,
|
|
PropertyNamingPolicy = JsonKnownNamingPolicy.CamelCase,
|
|
WriteIndented = false)]
|
|
internal partial class FriendRequestResultContext : JsonSerializerContext
|
|
{
|
|
|
|
}
|