2023-07-23 22:50:03 -07:00
|
|
|
namespace Newsbot.Collector.Domain.Response;
|
2023-07-06 22:24:50 -07:00
|
|
|
|
|
|
|
public class AuthSuccessfulResponse
|
|
|
|
{
|
|
|
|
// might want to validate the user before we return the token
|
|
|
|
|
|
|
|
public string? Token { get; set; }
|
2023-07-10 22:41:39 -07:00
|
|
|
public string? RefreshToken { get; set; }
|
2023-07-06 22:24:50 -07:00
|
|
|
}
|