6 lines
138 B
C#
6 lines
138 B
C#
|
namespace Newsbot.Collector.Api.Domain.Response;
|
||
|
|
||
|
public class AuthFailedResponse
|
||
|
{
|
||
|
public IEnumerable<string>? Errors { get; set; }
|
||
|
}
|