Luski.Net/Luski.net/JsonTypes/StatusUpdate.cs
JacobTech 2eb1abe526 init
2023-01-01 22:50:39 -05:00

18 lines
404 B
C#
Executable File

using Luski.net.Enums;
using System.Text.Json.Serialization;
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!;
}