improvements, fixes, etc...

This commit is contained in:
Loretta 2024-08-12 13:21:34 +02:00
parent 4cd37c39df
commit e91ac08f05
2 changed files with 3 additions and 3 deletions

View File

@ -2,8 +2,6 @@
{ {
public enum AcErrorCode : byte public enum AcErrorCode : byte
{ {
Unset = 255,
//[DisplayName("Unknown error")] //[DisplayName("Unknown error")]
UnknownError = 0, UnknownError = 0,
InvalidMessage = 1, InvalidMessage = 1,
@ -57,5 +55,7 @@
RefreshTokenUpdateError = 50, RefreshTokenUpdateError = 50,
EmailIsNullOrEmpty = 55, EmailIsNullOrEmpty = 55,
Unset = 255,
} }
} }

View File

@ -70,7 +70,7 @@ public class SignalPostJsonMessage
} }
[MessagePackObject] [MessagePackObject]
public class SignalPostJsonDataMessage<TPostDataType> : SignalPostJsonMessage, ISignalPostMessage<TPostDataType> where TPostDataType : class public class SignalPostJsonDataMessage<TPostDataType> : SignalPostJsonMessage, ISignalPostMessage<TPostDataType> //where TPostDataType : class
{ {
[IgnoreMember] [IgnoreMember]
private TPostDataType? _postData; private TPostDataType? _postData;