Ignore:
Timestamp:
12/10/25 15:12:34 (10 months ago)
Author:
imbrsk <boris696boris@…>
Branches:
master
Children:
9f7a52e
Parents:
f735dac
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/User.cs

    rf735dac r39f76a9  
    1212    public class User
    1313    {
     14        internal object Payments;
     15
    1416        public int Id { get; set; }
    1517        public string? Name { get; set; }
Note: See TracChangeset for help on using the changeset viewer.