namespace AIStudio.Tools.ERIClient; public sealed class APIResponse { /// /// Was the API call successful? /// public bool Successful { get; set; } /// /// When the API call was not successful, this will contain the error message. /// public string Message { get; set; } = string.Empty; /// /// The data returned by the API call. /// public T? Data { get; set; } }