using StudyLib.Models; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Threading.Tasks; namespace StudyLib.API.Models { public class Group { public long ID { get; set; } public string Name { get; set; } public int Year { get; set; } public string AdminId { get; set; } public ICollection Users { get; set; } public ICollection GroupCandidates { get; set; } public ICollection Subjects { get; set; } } }