demo_term/demko_term/Models/Specialty.cs
2025-04-14 08:39:47 +03:00

22 lines
479 B
C#

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<Statement> Statements { get; set; } = new List<Statement>();
}