Newsbot.Collector/Newsbot.Collector.Api/Domain/Response/AuthSuccessfulResponse.cs

8 lines
199 B
C#

namespace Newsbot.Collector.Api.Domain.Response;
public class AuthSuccessfulResponse
{
// might want to validate the user before we return the token
public string? Token { get; set; }
}