7 lines
235 B
C#
7 lines
235 B
C#
using Knot.Contracts.Auth.Application.Auth.DTOs;
|
|
using Knot.Shared.Kernel;
|
|
using MediatR;
|
|
|
|
namespace Knot.Modules.Auth.Application.Users.RefreshToken;
|
|
|
|
public record RefreshTokenCommand(string RefreshToken) : ICommand<AuthResponseDto>; |