11 lines
259 B
C#
11 lines
259 B
C#
|
using System.Collections;
|
||
|
|
||
|
namespace Newsbot.Collector.Api.Domain.Results;
|
||
|
|
||
|
public class AuthenticationResult
|
||
|
{
|
||
|
public string? Token { get; set; }
|
||
|
|
||
|
public bool IsSuccessful { get; set; }
|
||
|
public IEnumerable<string>? ErrorMessage { get; set; }
|
||
|
}
|