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; } } }