source: iknow-api/Models/EnrollmentInfo.cs@ 2e17229

Last change on this file since 2e17229 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
Line 
1using System.ComponentModel.DataAnnotations.Schema;
2using Microsoft.AspNetCore.SignalR;
3using Microsoft.Net.Http.Headers;
4
5namespace iknow_api.Models
6{
7 public enum Quota
8 {
9 drzavna, privatna, stipendija
10 }
11 public class EnrollmentInfo
12 {
13 public int Id { get; set; }
14 public int EnrollmentYear { get; set; }
15 public Quota Quota { get; set; }
16 public int MajorId { get; set; }
17 public Major? Major { get; set; }
18 public int UserId { get; set; }
19 public User? User { get; set; }
20 public string? StudyType { get; set; }
21 public string? StudyStatus { get; set; }
22
23 }
24}
Note: See TracBrowser for help on using the repository browser.