Skip to content

Commit 59fbb2f

Browse files
committed
5.4.2.0
1 parent 6e0d0f8 commit 59fbb2f

File tree

5 files changed

+32
-0
lines changed

5 files changed

+32
-0
lines changed

DktApi/LanguageSubTask.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

EAdminApi/Message.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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")]

IDP/UserInfo.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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+
}

MobileApi/Contact.cs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
}

MobileApi/Institution.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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")]

0 commit comments

Comments
 (0)