Files
simapi-net/Communications/YYLoginItem.cs
T

15 lines
296 B
C#
Raw Normal View History

2020-02-04 16:51:15 +08:00
using System;
namespace YYApi.Communications
{
/// <summary>
/// 登录信息中间件
/// </summary>
public class YYLoginItem
{
//登录用户的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
}
}