Dialogs nullable

This commit is contained in:
Cj
2025-01-08 06:29:57 -05:00
parent c4b2f4b3db
commit ae882e9f7d
25 changed files with 120 additions and 119 deletions
@@ -5,15 +5,15 @@ namespace Core.Models.Eft.Dialog;
public class GetMailDialogViewRequestData
{
[JsonPropertyName("type")]
public MessageType Type { get; set; }
[JsonPropertyName("type")]
public MessageType? Type { get; set; }
[JsonPropertyName("dialogId")]
public string DialogId { get; set; }
[JsonPropertyName("dialogId")]
public string? DialogId { get; set; }
[JsonPropertyName("limit")]
public int Limit { get; set; }
[JsonPropertyName("limit")]
public int? Limit { get; set; }
[JsonPropertyName("time")]
public decimal Time { get; set; } // decimal
[JsonPropertyName("time")]
public decimal Time { get; set; } // decimal
}