File tree Expand file tree Collapse file tree 5 files changed +32
-0
lines changed Expand file tree Collapse file tree 5 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -18,5 +18,7 @@ public class LanguageSubTask
1818 public string ? title { get ; set ; }
1919 [ JsonPropertyName ( "xeropanLessonId" ) ]
2020 public long xeropanLessonId { get ; set ; }
21+ [ JsonPropertyName ( "xeropanLessonTypeId" ) ]
22+ public int xeropanLessonTypeId { get ; set ; }
2123 }
2224}
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ public class Message
66 {
77 [ JsonPropertyName ( "cimzettLista" ) ]
88 public List < Addressee > ? addressList { get ; set ; }
9+ [ JsonPropertyName ( "isCimzettekElrejtve" ) ]
10+ public bool addressesHidden { get ; set ; }
911 [ JsonPropertyName ( "csatolmanyok" ) ]
1012 public List < Attachment > ? attachmentList { get ; set ; }
1113 [ JsonPropertyName ( "azonosito" ) ]
Original file line number Diff line number Diff line change 1+ using System . Text . Json . Serialization ;
2+
3+ namespace TTMC . Kréta
4+ {
5+ public class UserInfo
6+ {
7+ [ JsonPropertyName ( "email_verified" ) ]
8+ public bool emailVerified { get ; set ; }
9+ }
10+ }
Original file line number Diff line number Diff line change 1+ using System . Text . Json . Serialization ;
2+
3+ namespace TTMC . Kréta
4+ {
5+ public class Contact
6+ {
7+ [ JsonPropertyName ( "Email" ) ]
8+ public string ? email { get ; set ; }
9+ [ JsonPropertyName ( "Id" ) ]
10+ public string ? id { get ; set ; }
11+ [ JsonPropertyName ( "IsEmailMegerositve" ) ]
12+ public bool isEmailVerified { get ; set ; }
13+ [ JsonPropertyName ( "Telefonszam" ) ]
14+ public string ? phoneNumber { get ; set ; }
15+ }
16+ }
Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ public class CustomizationSettings
1818 public int delayOfNotifications { get ; set ; }
1919 [ JsonPropertyName ( "IsOsztalyAtlagMegjeleniteseEllenorzoben" ) ]
2020 public bool isClassAverageVisible { get ; set ; }
21+ [ JsonPropertyName ( "IsElerhetosegSzerkesztheto" ) ]
22+ public bool isContactDataEditable { get ; set ; }
2123 [ JsonPropertyName ( "IsTanorakTemajaMegtekinthetoEllenorzoben" ) ]
2224 public bool isLessonsThemeVisible { get ; set ; }
2325 [ JsonPropertyName ( "KovetkezoTelepitesDatuma" ) ]
You can’t perform that action at this time.
0 commit comments