mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-11 23:29:06 +00:00
9 lines
467 B
C#
9 lines
467 B
C#
namespace AIStudio.Tools.ERIClient.DataModel;
|
|
|
|
/// <summary>
|
|
/// The response to an authentication request.
|
|
/// </summary>
|
|
/// <param name="Success">True, when the authentication was successful.</param>
|
|
/// <param name="Token">The token to use for further requests.</param>
|
|
/// <param name="Message">When the authentication was not successful, this contains the reason.</param>
|
|
public readonly record struct AuthResponse(bool Success, string? Token, string? Message); |