demo_term/demko_term/Models/Statement.cs

30 lines
685 B
C#
Raw Permalink Normal View History

2025-04-14 05:39:47 +00:00
using System;
using System.Collections.Generic;
namespace demko_term.Models;
public partial class Statement
{
public int Id { get; set; }
public string PersonalNumber { get; set; } = null!;
public DateOnly? SubmissionDate { get; set; }
public TimeOnly? SubmissionTime { get; set; }
public int? ApplicantCode { get; set; }
public int? ApplicantSpeciality { get; set; }
public bool? Passport { get; set; }
public bool? Diploma { get; set; }
public int? Points { get; set; }
public virtual Applicant? ApplicantCodeNavigation { get; set; }
public virtual Specialty? ApplicantSpecialityNavigation { get; set; }
}