Newsbot.Collector/Newsbot.Collector.Api/Domain/Results/AuthenticationResult.cs
James Tombleson 4cacc03fb8
Some checks failed
continuous-integration/drone/pr Build is failing
Getting things setup to support token refresh
2023-07-10 22:41:39 -07:00

12 lines
305 B
C#

using System.Collections;
namespace Newsbot.Collector.Api.Domain.Results;
public class AuthenticationResult
{
public string? Token { get; set; }
public string? RefreshToken { get; set; }
public bool IsSuccessful { get; set; }
public IEnumerable<string>? ErrorMessage { get; set; }
}