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