feat: introduce training module with new entities, migrations, API, and frontend application, and add article type and validity days.

This commit is contained in:
2025-12-12 18:12:51 +01:00
parent 49abef6f96
commit 4810d49410
32 changed files with 11685 additions and 211 deletions

View File

@@ -0,0 +1,12 @@
namespace Zentral.Domain.Entities;
public class ClienteContatto : BaseEntity
{
public string Nome { get; set; } = string.Empty;
public string Cognome { get; set; } = string.Empty;
public string? Email { get; set; }
public string? Ruolo { get; set; }
public string? Telefono { get; set; }
public int ClienteId { get; set; }
public Cliente Cliente { get; set; } = null!;
}