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