12 lines
379 B
C#
12 lines
379 B
C#
using GozareshgirProgramManager.Application._Common.Interfaces;
|
|
using GozareshgirProgramManager.Application._Common.Models;
|
|
using MediatR;
|
|
|
|
namespace GozareshgirProgramManager.Application.Modules.Users.Commands.SignOutUser;
|
|
|
|
/// <summary>
|
|
/// دستور خروج کاربر از سیستم
|
|
/// </summary>
|
|
public record SignOutUserCommand(string RefreshToken) : IBaseCommand;
|
|
|