source: iknow-api/Models/EnrollmentInfo.cs@ 586825e

Last change on this file since 586825e was 586825e, checked in by imbrsk <boris696boris@…>, 11 months ago

Refactored enums

  • Property mode set to 100644
File size: 516 bytes
Line 
1using System.ComponentModel.DataAnnotations.Schema;
2
3namespace iknow_api.Models
4{
5 public enum Quota
6 {
7 drzavna, privatna, stipendija
8 }
9 public enum Major
10 {
11 SIIS, PIT, KN, KI, IMB, IE, SSP, SEIS
12 }
13 public class EnrollmentInfo
14 {
15 public int Id { get; set; }
16 public int enrollmentYear { get; set; }
17 public Quota quota;
18 public Major major { get; set; }
19 public int UserId { get; set; }
20 public User? User { get; set; }
21 }
22}
Note: See TracBrowser for help on using the repository browser.