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

Last change on this file since 2d64b2e was 2d64b2e, checked in by imbrsk <boris696boris@…>, 10 months ago

Refactor model properties for consistency and clarity

  • 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.