2026-07-27 14:26:04 +08:00
|
|
|
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; }
|
|
|
|
|
}
|