Files

10 lines
272 B
C#
Raw Permalink 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; }
}