More Types

This commit is contained in:
CWX
2025-01-06 23:49:14 +00:00
parent 211e68f3fc
commit 8b8fa6e4fd
34 changed files with 714 additions and 14 deletions
@@ -0,0 +1,19 @@
using System.Text.Json.Serialization;
using Core.Models.Enums;
namespace Core.Models.Eft.Dialog;
public class GetMailDialogViewRequestData
{
[JsonPropertyName("type")]
public MessageType Type { get; set; }
[JsonPropertyName("dialogId")]
public string DialogId { get; set; }
[JsonPropertyName("limit")]
public int Limit { get; set; }
[JsonPropertyName("time")]
public decimal Time { get; set; } // decimal
}