16 lines
417 B
C#
16 lines
417 B
C#
using Domain.Entities;
|
|
|
|
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; }
|
|
}
|
|
}
|