WIP: feature/Définition-des-entités-métier-et-interfaces #14

Closed
Blyssco wants to merge 7 commits from feature/Définition-des-entités-métier-et-interfaces into develop
Showing only changes of commit 65e564b44c - Show all commits

View File

@ -1,4 +1,5 @@
using System; using Domain.Entities;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
@ -14,5 +15,6 @@ namespace Domain.DTO
public string? Type { get; set; } public string? Type { get; set; }
public string? Creator { get; set; } public string? Creator { get; set; }
public DateTime? CreationDate { get; set; } public DateTime? CreationDate { get; set; }
public Magician? Magician { get; set; }
} }
} }