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