Files
KfChatDotNet/KfChatDotNetWsClient/Models/Json/DeleteMessagesJsonModel.cs
barelyprofessional 9f92fc8e27 Initial commit
2024-03-25 20:11:49 +08:00

9 lines
192 B
C#

using Newtonsoft.Json;
namespace KfChatDotNetWsClient.Models.Json;
public class DeleteMessagesJsonModel
{
[JsonProperty("delete")]
public List<int> MessageIdsToDelete { get; set; }
}