mirror of
https://github.com/spacebarchat/server.git
synced 2026-03-30 16:05:41 +00:00
14 lines
327 B
C#
14 lines
327 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Spacebar.Models.Gateway;
|
|
|
|
public class QoSPayload {
|
|
[JsonPropertyName("ver")]
|
|
public int Version { get; set; }
|
|
|
|
[JsonPropertyName("active")]
|
|
public bool Active { get; set; }
|
|
|
|
[JsonPropertyName("reasons")]
|
|
public List<string> Reasons { get; set; } = [];
|
|
} |