Files
simapi-net/Communications/YYLoginItem.cs
T

15 lines
294 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; }
//登录用户来源
public string Type { get; set; }
}
}