18 lines
404 B
C#
18 lines
404 B
C#
|
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!;
|
|||
|
}
|