Files
2026-02-11 10:39:16 +01:00

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; } = [];
}