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-06-27 04:38:04 +08:00
|
|
|
public record SimApiLoginItem(string Id, string[] Type,Dictionary<string,string> Meta = null);
|