Ignore:
Timestamp:
12/10/25 15:12:34 (10 months ago)
Author:
imbrsk <boris696boris@…>
Branches:
master
Children:
61fd94e
Parents:
33c69d6
Message:

feat: Add ActiveSemesters model and update related entities

  • Introduced ActiveSemesters model with properties: id, year, and Type.
  • Updated EnrolledSemesters model to include new properties: CratedAt, LastChange, Veryfied, Node, and StudentComment.
  • Modified Payment model to change the primary key and updated table name to Payments.
  • Added Signature property to SemesterSubject model and updated table name to SemesterSubjects.
  • Created new migration to reflect changes in the database schema.
  • Updated User model to include a reference to Payments.
File:
1 edited

Legend:

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

    r33c69d6 r70a9f6d  
    99        public int SubjectId { get; set; }
    1010        public int ProfessorId { get; set; }
    11        
     11        public bool Signature { get; set; }
    1212        public User? User { get; set; }                 
    1313        public EnrolledSemesters? EnrolledSemester { get; set; }
Note: See TracChangeset for help on using the changeset viewer.