We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43781e7 commit c20a0eeCopy full SHA for c20a0ee
Messages/UserInfoMessage.cs
@@ -52,6 +52,11 @@ public UserInfoMessage()
52
[DataMember]
53
public long OriginalTransactionId { get; set; }
54
55
+ /// <summary>
56
+ /// Is blocked.
57
+ /// </summary>
58
+ public bool IsBlocked { get; set; }
59
+
60
/// <inheritdoc />
61
public override string ToString()
62
{
@@ -77,6 +82,7 @@ protected UserInfoMessage CopyTo(UserInfoMessage destination)
77
82
destination.Login = Login;
78
83
destination.Password = Password;
79
84
destination.OriginalTransactionId = OriginalTransactionId;
85
+ destination.IsBlocked = IsBlocked;
80
86
81
87
this.CopyExtensionInfo(destination);
88
0 commit comments