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

7 lines
180 B
C#
Raw Permalink Normal View History

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