Newsbot.Collector/Newsbot.Collector.Domain/Results/AuthenticationResult.cs

7 lines
180 B
C#

namespace Newsbot.Collector.Domain.Results;
public class AuthenticationResult : BaseResult
{
public string? Token { get; set; }
public string? RefreshToken { get; set; }
}