Changeset 586825e for iknow-api/DTOs
- Timestamp:
- 10/30/25 14:24:10 (11 months ago)
- Branches:
- master
- Children:
- 5e22720
- Parents:
- f844b7e
- File:
-
- 1 edited
-
iknow-api/DTOs/UserDTO.cs (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
iknow-api/DTOs/UserDTO.cs
rf844b7e r586825e 10 10 public class GetUserDataDto 11 11 { 12 public string JWT { get; set; }12 public string? JWT { get; set; } 13 13 } 14 14 … … 25 25 public UserRole Role { get; set; } 26 26 public float gpa { get; set; } 27 public type tip { get; set; }27 public Type tip { get; set; } 28 28 public string city { get; set; } = string.Empty; 29 29 public string address { get; set; } = string.Empty; … … 32 32 public string microsoftEmail { get; set; } = string.Empty; 33 33 public int enrollmentYear { get; set; } 34 public quota quotaType { get; set; }35 public major majorType { get; set; }34 public Quota quotaType { get; set; } 35 public Major majorType { get; set; } 36 36 37 37 } … … 57 57 Student 58 58 } 59 public enum type59 public enum Type 60 60 { 61 61 strucen, gimnazija 62 62 } 63 public enum quota63 public enum Quota 64 64 { 65 65 drzavna, privatna, stipendija 66 66 } 67 public enum major67 public enum Major 68 68 { 69 69 SIIS, PIT, KN, KI, IMB, IE, SSP, SEIS
Note:
See TracChangeset
for help on using the changeset viewer.
