8 lines
199 B
C#
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; }
|
||
|
}
|