using System; using System.Collections.Generic; namespace demko_term.Models; public partial class Specialty { public int Id { get; set; } public string Code { get; set; } = null!; public string Title { get; set; } = null!; public int Places { get; set; } public string EducationForm { get; set; } = null!; public int Cost { get; set; } public virtual ICollection Statements { get; set; } = new List(); }