namespace JdeScoping.Core.Models;
///
/// Result of an authentication attempt
///
/// Whether authentication was successful
/// User info if successful, null otherwise
/// Error message if failed, null otherwise
public record AuthResult(
bool Success,
UserInfo? User,
string? ErrorMessage);