feat: Implement a customizable dashboard with user preferences and a dynamic widget system.

This commit is contained in:
2025-12-04 02:58:33 +01:00
parent e70b30cab8
commit 44c0406fd2
23 changed files with 5682 additions and 178 deletions

View File

@@ -0,0 +1,8 @@
namespace Zentral.Domain.Entities;
public class UserDashboardPreference : BaseEntity
{
public int UtenteId { get; set; }
public Utente? Utente { get; set; }
public string LayoutJson { get; set; } = string.Empty;
}