using System.ComponentModel.DataAnnotations; namespace Entities { public class GroupEntity { public int Id { get; set; } public int Num { get; set; } public int year { get; set; } public string sector { get; set; } public ICollection Users { get; set; } = new List(); public ICollection VocabularyList { get; set; } = new List(); } }