add pinned to api

This commit is contained in:
Stanley Dimant
2022-10-02 13:01:09 +02:00
parent cfd0ba4c23
commit 90bb5be899
2 changed files with 2 additions and 0 deletions

View File

@@ -54,6 +54,7 @@
public const string SendGroupPause = "PauseGroup"; public const string SendGroupPause = "PauseGroup";
public const string SendGroupRemoveUser = "RemoveUserFromGroup"; public const string SendGroupRemoveUser = "RemoveUserFromGroup";
public const string SendGroupChangeOwner = "ChangeOwnerOfGroup"; public const string SendGroupChangeOwner = "ChangeOwnerOfGroup";
public const string SendGroupChangePinned = "ChangedPinnedUserInGroup";
public const string OnGroupChange = "OnGroupPushChange"; public const string OnGroupChange = "OnGroupPushChange";
public const string OnGroupUserChange = "OnGroupUserChange"; public const string OnGroupUserChange = "OnGroupUserChange";

View File

@@ -7,5 +7,6 @@
public string? UserAlias { get; set; } public string? UserAlias { get; set; }
public bool? IsPaused { get; set; } public bool? IsPaused { get; set; }
public bool? IsRemoved { get; set; } public bool? IsRemoved { get; set; }
public bool? IsPinned { get; set; }
} }
} }