2023-07-06 22:24:50 -07:00
|
|
|
using System.Collections;
|
|
|
|
|
|
|
|
namespace Newsbot.Collector.Api.Domain.Results;
|
|
|
|
|
|
|
|
public class AuthenticationResult
|
|
|
|
{
|
|
|
|
public string? Token { get; set; }
|
2023-07-10 22:41:39 -07:00
|
|
|
public string? RefreshToken { get; set; }
|
2023-07-06 22:24:50 -07:00
|
|
|
|
|
|
|
public bool IsSuccessful { get; set; }
|
|
|
|
public IEnumerable<string>? ErrorMessage { get; set; }
|
|
|
|
}
|