Newsbot.Collector/Newsbot.Collector.Api/Domain/Results/AuthenticationResult.cs

12 lines
305 B
C#
Raw Normal View History

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; }
}