Newsbot.Collector/Newsbot.Collector.Api/Domain/Requests/UserRefreshTokenRequest.cs

7 lines
175 B
C#
Raw Normal View History

namespace Newsbot.Collector.Api.Domain.Requests;
public class UserRefreshTokenRequest
{
public string? Token { get; set; }
public string? RefreshToken { get; set; }
}