19 lines
446 B
C#
19 lines
446 B
C#
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
|
|
} |