You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
373 B
18 lines
373 B
namespace Kean.Domain.Identity.Commands
|
|
{
|
|
/// <summary>
|
|
/// 注销命令
|
|
/// </summary>
|
|
public class LogoutCommand : ICommand
|
|
{
|
|
/// <summary>
|
|
/// 会话
|
|
/// </summary>
|
|
public string Token { get; set; }
|
|
|
|
/// <summary>
|
|
/// 原因
|
|
/// </summary>
|
|
public string Reason { get; set; }
|
|
}
|
|
}
|