From 65e564b44cd727ea94353c31e5e4f65988449ef2 Mon Sep 17 00:00:00 2001 From: blyssco Date: Thu, 24 Jul 2025 20:06:49 +0200 Subject: [PATCH] Fix Ajout Magician dans le UpdateSpell --- Domain/DTO/UpdateSpell.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Domain/DTO/UpdateSpell.cs b/Domain/DTO/UpdateSpell.cs index 6e00350..420a4f7 100644 --- a/Domain/DTO/UpdateSpell.cs +++ b/Domain/DTO/UpdateSpell.cs @@ -1,4 +1,5 @@ -using System; +using Domain.Entities; +using System; using System.Collections.Generic; using System.Linq; using System.Text; @@ -14,5 +15,6 @@ namespace Domain.DTO public string? Type { get; set; } public string? Creator { get; set; } public DateTime? CreationDate { get; set; } + public Magician? Magician { get; set; } } }