Files
simapi-net/Communications/SimApiLoginItem.cs
T

14 lines
383 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-11-02 22:18:25 +08:00
public required string Id { get; set; }
2025-05-14 06:26:10 +08:00
public string[] Type { get; set; } = ["user"];
2025-10-25 17:03:43 +08:00
public Dictionary<string, string> Meta { get; set; } = [];
public Dictionary<string, object?> Extra { get; set; } = [];
2024-08-19 03:39:35 +08:00
};