refactor: update namespaces and improve null handling in view models and controllers

This commit is contained in:
mirage
2026-04-03 16:46:11 +02:00
parent a3421bbdf0
commit 2550d39af5
12 changed files with 22 additions and 23 deletions

View File

@@ -14,11 +14,11 @@
/// <summary>
/// Définit le nom de l'artiste.
/// </summary>
public string Nom { get; set; }
public string? Nom { get; set; }
/// <summary>
/// Définit la biographie de l'artiste.
/// </summary>
public string Biographie { get; set; }
public string? Biographie { get; set; }
}
}