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 InstallationResponse
{
public required int Id { get; set; }
public required GithubInstallationAccount Account { get; set; }
}
///
public sealed class GithubInstallationAccount
{
public required string Login { get; set; }
}