-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathReverseEventCountStruct.cs
More file actions
28 lines (25 loc) · 1 KB
/
ReverseEventCountStruct.cs
File metadata and controls
28 lines (25 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System.Runtime.InteropServices;
namespace Lagrange.Core.NativeAPI.Test.NativeModel;
[StructLayout(LayoutKind.Sequential)]
public struct ReverseEventCountStruct
{
public ReverseEventCountStruct() { }
public int BotCaptchaEventCount = 0;
public int BotFriendRequestEventCount = 0;
public int BotGroupInviteNotificationEventCount = 0;
public int BotGroupInviteSelfEventCount = 0;
public int BotGroupJoinNotificationEventCount = 0;
public int BotGroupMemberDecreaseEventCount = 0;
public int BotGroupNudgeEventCount = 0;
public int BotGroupReactionEventCount = 0;
public int BotLoginEventCount = 0;
public int BotLogEventCount = 0;
public int BotMessageEventCount = 0;
public int BotNewDeviceVerifyEventCount = 0;
public int BotOfflineEventCount = 0;
public int BotOnlineEventCount = 0;
public int BotQrCodeEventCount = 0;
public int BotQrCodeQueryEventCount = 0;
public int BotRefreshKeystoreEventCount = 0;
public int BotSMSEventCount = 0;
}