Changeset a92a2a4 for iknow-api/Models


Ignore:
Timestamp:
10/30/25 17:22:08 (11 months ago)
Author:
imbrsk <boris696boris@…>
Branches:
master
Children:
c2f79d7
Parents:
3592476
Message:

ADDEED ALL MODESL :)

Location:
iknow-api/Models
Files:
9 added
2 edited

Legend:

Unmodified
Added
Removed
  • iknow-api/Models/EnrollmentInfo.cs

    r3592476 ra92a2a4  
    77        drzavna, privatna, stipendija
    88    }
    9     public enum Major
    10     {
    11         SIIS, PIT, KN, KI, IMB, IE, SSP, SEIS
    12     }
    139    public class EnrollmentInfo
    1410    {
     
    1612        public int enrollmentYear { get; set; }
    1713        public Quota quota;
    18         public Major major { get; set; }
     14        public int MajorId { get; set; }
     15        public Major? Major { get; set; }
    1916        public int UserId { get; set; }
    2017        public User? User { get; set; }
     18
    2119    }
    2220}
  • iknow-api/Models/User.cs

    r3592476 ra92a2a4  
    2525        public ContactInfo? ContactInfo { get; set; }
    2626        public EnrollmentInfo? EnrollmentInfo { get; set; }
     27        public ICollection<UserDocuments>? Documents { get; set; }
     28        public ICollection<Payment>? EnrolledSemesters { get; set; }
     29        public ICollection<SemesterSubject>? EnrolledSemesterUserSubjects { get; set; }
     30
     31        public ICollection<SemesterSubject>? TeachingSubjects { get; set; }
    2732
    2833    }
Note: See TracChangeset for help on using the changeset viewer.