JacobTech
d8fbf281d0
I moved the two server types to their own classes to prevent API calls to a server, not of that type.
37 lines
1.1 KiB
C#
Executable File
37 lines
1.1 KiB
C#
Executable File
using System;
|
|
using Luski.net.Interfaces;
|
|
using Luski.net.JsonTypes.BaseTypes;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text.Json.Serialization;
|
|
using System.Text.Json.Serialization.Metadata;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using JacobTechEncryption;
|
|
using Luski.net.Enums;
|
|
using Luski.net.Enums.Main;
|
|
using Luski.net.Structures.Main;
|
|
|
|
namespace Luski.net.Structures.Public;
|
|
|
|
public class PublicSocketAppUser : PublicSocketUserBase, IAppUser
|
|
{
|
|
[JsonPropertyName("selected_channel")]
|
|
[JsonInclude]
|
|
public long SelectedChannel { get; internal set; } = default!;
|
|
[JsonPropertyName("username")]
|
|
[JsonInclude]
|
|
public string Username { get; internal set; } = default!;
|
|
}
|
|
|
|
[JsonSerializable(typeof(PublicSocketAppUser))]
|
|
[JsonSourceGenerationOptions(
|
|
GenerationMode = JsonSourceGenerationMode.Default,
|
|
PropertyNamingPolicy = JsonKnownNamingPolicy.Unspecified,
|
|
WriteIndented = false,
|
|
DefaultIgnoreCondition = JsonIgnoreCondition.Never)]
|
|
internal partial class PublicSocketAppUserContext : JsonSerializerContext
|
|
{
|
|
|
|
}
|