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.
24 lines
395 B
24 lines
395 B
3 months ago
|
namespace Kean.Domain.Identity.Enums
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 离线原因
|
||
|
/// </summary>
|
||
|
public enum OfflineReason
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 过期
|
||
|
/// </summary>
|
||
|
Timeout,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 冲突
|
||
|
/// </summary>
|
||
|
Conflict,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 重启服务
|
||
|
/// </summary>
|
||
|
Restart
|
||
|
}
|
||
|
}
|