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