namespace AIStudio.Tools.ERIClient.DataModel;
///
/// The response to an authentication request.
///
/// True, when the authentication was successful.
/// The token to use for further requests.
/// When the authentication was not successful, this contains the reason.
public readonly record struct AuthResponse(bool Success, string? Token, string? Message);