using System.Text.Json.Serialization; namespace Content.Server.Github.Responses; /// /// Not all fields are filled out - only the necessary ones. If you need more just add them. /// > /// public sealed class TokenResponse { public required string Token { get; set; } [JsonPropertyName("expires_at")] public required DateTime ExpiresAt { get; set; } }