using System.Collections.Generic;
namespace SimApi.Communications;
///
/// 登录信息中间件
///
public class SimApiLoginItem
{
public string? Id { get; set; }
public string[] Type { get; set; } = new[] { "user" };
public Dictionary? Meta { get; set; } = null;
public object? Extra { get; set; } = null;
};