From 19624548f755dae2a72509ece40d049c338ab38f Mon Sep 17 00:00:00 2001 From: Linwenxuan Date: Mon, 4 Mar 2024 15:51:14 +0800 Subject: [PATCH] [OneBot] add missing field to OneBotGroupFile --- Lagrange.OneBot/Core/Entity/Notify/OneBotGroupFile.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lagrange.OneBot/Core/Entity/Notify/OneBotGroupFile.cs b/Lagrange.OneBot/Core/Entity/Notify/OneBotGroupFile.cs index e703a9fb6..322da3808 100644 --- a/Lagrange.OneBot/Core/Entity/Notify/OneBotGroupFile.cs +++ b/Lagrange.OneBot/Core/Entity/Notify/OneBotGroupFile.cs @@ -20,4 +20,6 @@ public class OneBotFileInfo(string id, string name, ulong size) [JsonPropertyName("name")] public string Name { get; set; } = name; [JsonPropertyName("size")] public ulong Size { get; set; } = size; + + [JsonPropertyName("busid")] public uint BusId { get; set; } } \ No newline at end of file