37 lines
636 B
C#
37 lines
636 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Enums;
|
|
using SPTarkov.Server.Core.Models.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Dialog;
|
|
|
|
public record GetMailDialogViewRequestData : IRequestData
|
|
{
|
|
[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
|
|
}
|