mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-04-30 03:22:04 -04:00
9 lines
192 B
C#
9 lines
192 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace KfChatDotNetWsClient.Models.Json;
|
|
|
|
public class DeleteMessagesJsonModel
|
|
{
|
|
[JsonProperty("delete")]
|
|
public List<int> MessageIdsToDelete { get; set; }
|
|
} |