2024-06-27 04:38:04 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace SimApi.Communications;
|
2024-03-23 07:29:43 +08:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 登录信息中间件
|
|
|
|
|
/// </summary>
|
2024-08-19 03:39:35 +08:00
|
|
|
public class SimApiLoginItem
|
|
|
|
|
{
|
|
|
|
|
public string? Id { get; set; }
|
|
|
|
|
public string[] Type { get; set; } = new[] { "user" };
|
|
|
|
|
public Dictionary<string, string>? Meta { get; set; } = null;
|
|
|
|
|
public object? Extra { get; set; } = null;
|
|
|
|
|
};
|