using System.Text.Json.Serialization; using Luski.Shared.PublicServers.V1.Enums; namespace Luski.net.JsonTypes; internal class StatusUpdate { [JsonInclude] [JsonPropertyName("id")] public long id { get; set; } = default!; [JsonInclude] [JsonPropertyName("before")] public UserStatus before { get; set; } = default!; [JsonInclude] [JsonPropertyName("after")] public UserStatus after { get; set; } = default!; }