Files
simapi-net/Communications/SimApiLoginItem.cs
T

15 lines
301 B
C#
Raw Normal View History

2020-02-04 16:51:15 +08:00
using System;
2020-08-05 15:29:56 +08:00
namespace SimApi.Communications
2020-02-04 16:51:15 +08:00
{
/// <summary>
/// 登录信息中间件
/// </summary>
2020-08-05 15:29:56 +08:00
public class SimApiLoginItem
2020-02-04 16:51:15 +08:00
{
//登录用户的ID
public int Id { get; set; }
//登录用户来源
2020-02-18 08:07:51 +08:00
public string[] Type { get; set; }
2020-02-04 16:51:15 +08:00
}
}