Newsbot.Collector/Newsbot.Collector.Api/Domain/Response/AuthSuccessfulResponse.cs
James Tombleson 4cacc03fb8
Some checks failed
continuous-integration/drone/pr Build is failing
Getting things setup to support token refresh
2023-07-10 22:41:39 -07:00

9 lines
245 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; }
public string? RefreshToken { get; set; }
}