namespace Api.Models; public class Project { public Guid Id { get; set; } public Guid WorkspaceId { get; set; } public required string Name { get; set; } public DateTime CreatedAt { get; set; } // Navigation properties public Workspace Workspace { get; set; } = null!; public ICollection ShortLinks { get; set; } = []; public ICollection QRCodeDesigns { get; set; } = []; }