Files
Migu2.0/MiGu.DB/Domains/Dashboard/UserDashboardShortcut.cs
T

10 lines
272 B
C#
Raw Normal View History

namespace MiGu.DB.Domains.Dashboard;
2026-06-24 16:22:24 +08:00
public sealed class UserDashboardShortcut
{
public string UserId { get; set; } = "";
public string Scope { get; set; } = "";
public string KeysJson { get; set; } = "[]";
public DateTimeOffset UpdatedAt { get; set; }
}