demo_term/demko_term/Models/Specialty.cs

22 lines
479 B
C#
Raw Normal View History

2025-04-14 05:39:47 +00:00
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>();
}