Nettoyage

This commit is contained in:
blyssco 2025-07-24 20:07:38 +02:00
parent 65e564b44c
commit b05e08bb5a
2 changed files with 3 additions and 14 deletions

View File

@ -1,16 +1,11 @@
using Domain.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Domain.DTO
{
public class UpdateSpell
{
public required Guid id { get; set; }
public string? Name { get; set; }
public required Guid id { get; set; }
public string? Name { get; set; }
public string? Description { get; set; }
public string? Type { get; set; }
public string? Creator { get; set; }

View File

@ -1,10 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Domain.Entities
namespace Domain.Entities
{
public class Magician
{