Dialogs nullable
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user