source:
iknow-api/Models/EnrollmentInfo.cs@
bb02e3a
| Last change on this file since bb02e3a was aee2b88, checked in by , 9 months ago | |
|---|---|
|
|
| File size: 658 bytes | |
| Rev | Line | |
|---|---|---|
| [cab02ad] | 1 | using System.ComponentModel.DataAnnotations.Schema; |
| [2d64b2e] | 2 | using Microsoft.AspNetCore.SignalR; |
| 3 | using Microsoft.Net.Http.Headers; | |
| [cab02ad] | 4 | |
| 5 | namespace iknow_api.Models | |
| 6 | { | |
| [3592476] | 7 | public enum Quota |
| [cab02ad] | 8 | { |
| 9 | drzavna, privatna, stipendija | |
| 10 | } | |
| 11 | public class EnrollmentInfo | |
| 12 | { | |
| 13 | public int Id { get; set; } | |
| [aee2b88] | 14 | public int EnrollmentYear { get; set; } |
| 15 | public Quota Quota { get; set; } | |
| [a92a2a4] | 16 | public int MajorId { get; set; } |
| 17 | public Major? Major { get; set; } | |
| [cab02ad] | 18 | public int UserId { get; set; } |
| [3592476] | 19 | public User? User { get; set; } |
| [2d64b2e] | 20 | public string? StudyType { get; set; } |
| 21 | public string? StudyStatus { get; set; } | |
| [a92a2a4] | 22 | |
| [cab02ad] | 23 | } |
| 24 | } |
Note:
See TracBrowser
for help on using the repository browser.
