feat: Refactor Titre views and view models to use Administration area

This commit is contained in:
mirage
2026-03-05 15:55:07 +01:00
parent c42a4bb72c
commit de6ca18eac
13 changed files with 28 additions and 12 deletions

View File

@@ -0,0 +1,10 @@
namespace Webzine.WebApplication.Areas.Administration.ViewModels.Titre;
public class AdminTitreDelete
{
public int Id { get; set; }
public string Titre { get; set; }
public string Artiste { get; set; }
}