source: iknow-api/Models/EnrollmentInfo.cs@ ab652ff

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

Refactor model properties for consistency and clarity

  • 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; }
14 public int enrollmentYear { get; set; }
[f0fc386]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.