22 lines
479 B
C#
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>();
|
|||
|
}
|