Ignore:
Timestamp:
12/09/25 14:54:20 (10 months ago)
Author:
imbrsk <boris696boris@…>
Branches:
master
Children:
615f18d, f735dac
Parents:
334981d
Message:

Refactor model properties for consistency and clarity

File:
1 edited

Legend:

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

    r334981d rab652ff  
    11using System.ComponentModel.DataAnnotations.Schema;
     2using Microsoft.AspNetCore.SignalR;
     3using Microsoft.Net.Http.Headers;
    24
    35namespace iknow_api.Models
     
    1113        public int Id { get; set; }
    1214        public int enrollmentYear { get; set; }
    13         // CS1597 fix: no semicolon after accessor block
    1415        public Quota quota { get; set; }
    1516        public int MajorId { get; set; }
     
    1718        public int UserId { get; set; }
    1819        public User? User { get; set; }
     20        public string? StudyType { get; set; }
     21        public string? StudyStatus { get; set; }
    1922
    2023    }
Note: See TracChangeset for help on using the changeset viewer.