21 lines
535 B
C#
21 lines
535 B
C#
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 string? Description { get; set; }
|
|
public string? Type { get; set; }
|
|
public string? Creator { get; set; }
|
|
public DateTime? CreationDate { get; set; }
|
|
public Magician? Magician { get; set; }
|
|
}
|
|
}
|