From 6ae67aa70dae8119886b78bc3d19189f3bbac957 Mon Sep 17 00:00:00 2001 From: Jicheng Lu <103353@smsassist.com> Date: Wed, 7 May 2025 16:49:48 -0500 Subject: [PATCH] minor changes --- .../BotSharp.Core.Crontab/BotSharp.Core.Crontab.csproj | 6 ------ .../ViewModels/Conversations/Request/UpdateMessageModel.cs | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/src/Infrastructure/BotSharp.Core.Crontab/BotSharp.Core.Crontab.csproj b/src/Infrastructure/BotSharp.Core.Crontab/BotSharp.Core.Crontab.csproj index 00f4856d..7e92ca1f 100644 --- a/src/Infrastructure/BotSharp.Core.Crontab/BotSharp.Core.Crontab.csproj +++ b/src/Infrastructure/BotSharp.Core.Crontab/BotSharp.Core.Crontab.csproj @@ -10,12 +10,6 @@ enable - - - - - - diff --git a/src/Infrastructure/BotSharp.OpenAPI/ViewModels/Conversations/Request/UpdateMessageModel.cs b/src/Infrastructure/BotSharp.OpenAPI/ViewModels/Conversations/Request/UpdateMessageModel.cs index 7653fb19..759faaf7 100644 --- a/src/Infrastructure/BotSharp.OpenAPI/ViewModels/Conversations/Request/UpdateMessageModel.cs +++ b/src/Infrastructure/BotSharp.OpenAPI/ViewModels/Conversations/Request/UpdateMessageModel.cs @@ -6,7 +6,7 @@ namespace BotSharp.OpenAPI.ViewModels.Conversations; public class UpdateMessageModel { [JsonPropertyName("message")] - public ChatResponseDto Message { get; set; } = null!; + public ChatResponseModel Message { get; set; } = null!; [JsonPropertyName("inner_index")] public int InnerIndex { get; set; }