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