7 lines
180 B
C#
7 lines
180 B
C#
namespace Newsbot.Collector.Domain.Results;
|
|
|
|
public class AuthenticationResult : BaseResult
|
|
{
|
|
public string? Token { get; set; }
|
|
public string? RefreshToken { get; set; }
|
|
} |