This commit is contained in:
Alex
2025-01-11 18:07:07 +00:00
44 changed files with 1573 additions and 482 deletions
@@ -0,0 +1,9 @@
using System.Text.Json.Serialization;
namespace Core.Models.Eft.Dialog;
public class GetAllAttachmentsRequestData
{
[JsonPropertyName("dialogId")]
public string DialogId { get; set; }
}
@@ -5,5 +5,5 @@ namespace Core.Models.Eft.Dialog;
public class SetDialogReadRequestData
{
[JsonPropertyName("dialogId")]
public List<string>? DialogId { get; set; }
}
public List<string>? Dialogs { get; set; }
}