using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Modele { public class VocabularyDTO { public string word { get; set; } //public ICollection translations { get; } = new List(); public string LangueName { get; set; } //public LangueEntity? Langue { get; set; } = null!; } }