Files
Migu2.0/MiGu.Server/Dashboard/UserDashboardShortcut.cs
T
2026-06-24 16:22:24 +08:00

11 lines
359 B
C#

namespace MiGu.Server.Dashboard;
/// <summary>用户 Dashboard 快捷入口配置(按 user + scope 一行)。</summary>
public sealed class UserDashboardShortcut
{
public string UserId { get; set; } = "";
public string Scope { get; set; } = "";
public string KeysJson { get; set; } = "[]";
public DateTimeOffset UpdatedAt { get; set; }
}