|
Last change
on this file since a92a2a4 was a92a2a4, checked in by imbrsk <boris696boris@…>, 11 months ago |
|
ADDEED ALL MODESL :)
|
-
Property mode
set to
100644
|
|
File size:
479 bytes
|
| Line | |
|---|
| 1 | using System.ComponentModel.DataAnnotations.Schema;
|
|---|
| 2 |
|
|---|
| 3 | namespace iknow_api.Models
|
|---|
| 4 | {
|
|---|
| 5 | public enum Quota
|
|---|
| 6 | {
|
|---|
| 7 | drzavna, privatna, stipendija
|
|---|
| 8 | }
|
|---|
| 9 | public class EnrollmentInfo
|
|---|
| 10 | {
|
|---|
| 11 | public int Id { get; set; }
|
|---|
| 12 | public int enrollmentYear { get; set; }
|
|---|
| 13 | public Quota quota;
|
|---|
| 14 | public int MajorId { get; set; }
|
|---|
| 15 | public Major? Major { get; set; }
|
|---|
| 16 | public int UserId { get; set; }
|
|---|
| 17 | public User? User { get; set; }
|
|---|
| 18 |
|
|---|
| 19 | }
|
|---|
| 20 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.