Files
simapi-net/Communications/SimApiLoginItem.cs
T

14 lines
360 B
C#
Raw Normal View History

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
{
2025-05-14 06:26:10 +08:00
public string Id { get; set; } = null!;
public string[] Type { get; set; } = ["user"];
public Dictionary<string, string> Meta { get; set; } = new();
public object? Extra { get; set; }
2024-08-19 03:39:35 +08:00
};