19 lines
492 B
C#
19 lines
492 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Domain.Entities
|
|
{
|
|
public class Spell
|
|
{
|
|
public Guid Id { get; set; }
|
|
public required string Name { get; set; }
|
|
public required string Type { get; set; }
|
|
public required string Description { get; set; }
|
|
public required string Creator { get; set; }
|
|
public required DateTime CreationDate { get; set; }
|
|
}
|
|
}
|