source: iknow-api/Models/EnrollmentInfo.cs@ 93c368a

Last change on this file since 93c368a was 2e17229, checked in by Stefan-Saveski <stefansaveski19@…>, 9 months ago

Upgraded database, added get subjects and get passed subjects.

  • Property mode set to 100644
File size: 658 bytes
RevLine 
[4f5d8fd]1using System.ComponentModel.DataAnnotations.Schema;
[ab652ff]2using Microsoft.AspNetCore.SignalR;
3using Microsoft.Net.Http.Headers;
[4f5d8fd]4
5namespace iknow_api.Models
6{
[586825e]7 public enum Quota
[4f5d8fd]8 {
9 drzavna, privatna, stipendija
10 }
11 public class EnrollmentInfo
12 {
13 public int Id { get; set; }
[2e17229]14 public int EnrollmentYear { get; set; }
15 public Quota Quota { get; set; }
[5e22720]16 public int MajorId { get; set; }
17 public Major? Major { get; set; }
[4f5d8fd]18 public int UserId { get; set; }
[586825e]19 public User? User { get; set; }
[ab652ff]20 public string? StudyType { get; set; }
21 public string? StudyStatus { get; set; }
[5e22720]22
[4f5d8fd]23 }
24}
Note: See TracBrowser for help on using the repository browser.