32 lines
628 B
C#
32 lines
628 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Eft.Profile;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Dialog;
|
|
|
|
public record GetMailDialogViewResponseData
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object> ExtensionData { get; set; }
|
|
|
|
[JsonPropertyName("messages")]
|
|
public List<Message>? Messages
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("profiles")]
|
|
public List<UserDialogInfo>? Profiles
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("hasMessagesWithRewards")]
|
|
public bool? HasMessagesWithRewards
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|