Liber_Incantamentum/Domain/DTO/UpdateSpell.cs
2025-07-24 20:03:19 +02:00

19 lines
464 B
C#

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