Luski.Net/Luski.net/Structures/Main/MainSocketGroupChannel.cs
JacobTech 106d0d6078 Migration starts
• A lot of work needs to be done to make sure this works.
• I already know this push won't work, but it will build.
• I need to come up with a new way of storing local info. This will also bee needed to fix the very broken key system in this rushed commit.
2023-07-03 23:24:35 -04:00

21 lines
558 B
C#
Executable File

using System.Text.Json.Serialization;
namespace Luski.net.Structures.Main;
public class MainSocketGroupChannel : MainSocketTextChannel
{
[JsonPropertyName("owner")]
[JsonInclude]
public long Owner { get; internal set; } = default!;
}
[JsonSerializable(typeof(MainSocketGroupChannel))]
[JsonSourceGenerationOptions(
GenerationMode = JsonSourceGenerationMode.Default,
PropertyNamingPolicy = JsonKnownNamingPolicy.CamelCase,
WriteIndented = false)]
internal partial class MainSocketGroupChannelContext : JsonSerializerContext
{
}