108 lines
2.8 KiB
C#
108 lines
2.8 KiB
C#
using System.Text.Json.Serialization;
|
|
using Core.Models.Eft.Common.Tables;
|
|
using Core.Models.Eft.Profile;
|
|
using Core.Models.Enums;
|
|
|
|
namespace Core.Models.Spt.Dialog;
|
|
|
|
public class SendMessageDetails
|
|
{
|
|
/// <summary>
|
|
/// Player id
|
|
/// </summary>
|
|
[JsonPropertyName("recipientId")]
|
|
public string RecipientId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Who is sending this message
|
|
/// </summary>
|
|
[JsonPropertyName("sender")]
|
|
public MessageType Sender { get; set; }
|
|
|
|
/// <summary>
|
|
/// Optional - leave blank to use sender value
|
|
/// </summary>
|
|
[JsonPropertyName("dialogType")]
|
|
public MessageType? DialogType { get; set; }
|
|
|
|
/// <summary>
|
|
/// Optional - if sender is USER these details are used
|
|
/// </summary>
|
|
[JsonPropertyName("senderDetails")]
|
|
public UserDialogInfo? SenderDetails { get; set; }
|
|
|
|
/// <summary>
|
|
/// Optional - the trader sending the message
|
|
/// </summary>
|
|
[JsonPropertyName("trader")]
|
|
public string? Trader { get; set; }
|
|
|
|
/// <summary>
|
|
/// Optional - used in player/system messages, otherwise templateId is used
|
|
/// </summary>
|
|
[JsonPropertyName("messageText")]
|
|
public string? MessageText { get; set; }
|
|
|
|
/// <summary>
|
|
/// Optional - Items to send to player
|
|
/// </summary>
|
|
[JsonPropertyName("items")]
|
|
public List<Item>? Items { get; set; }
|
|
|
|
/// <summary>
|
|
/// Optional - How long items will be stored in mail before expiry
|
|
/// </summary>
|
|
[JsonPropertyName("itemsMaxStorageLifetimeSeconds")]
|
|
public int? ItemsMaxStorageLifetimeSeconds { get; set; }
|
|
|
|
/// <summary>
|
|
/// Optional - Used when sending messages from traders who send text from locale json
|
|
/// </summary>
|
|
[JsonPropertyName("templateId")]
|
|
public string? TemplateId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Optional - ragfair related
|
|
/// </summary>
|
|
[JsonPropertyName("systemData")]
|
|
public SystemData? SystemData { get; set; }
|
|
|
|
/// <summary>
|
|
/// Optional - Used by ragfair messages
|
|
/// </summary>
|
|
[JsonPropertyName("ragfairDetails")]
|
|
public MessageContentRagfair? RagfairDetails { get; set; }
|
|
|
|
/// <summary>
|
|
/// OPTIONAL - allows modification of profile settings via mail
|
|
/// </summary>
|
|
[JsonPropertyName("profileChangeEvents")]
|
|
public List<ProfileChangeEvent>? ProfileChangeEvents { get; set; }
|
|
}
|
|
|
|
public class ProfileChangeEvent
|
|
{
|
|
[JsonPropertyName("_id")]
|
|
public string Id { get; set; }
|
|
|
|
[JsonPropertyName("Type")]
|
|
public ProfileChangeEventType Type { get; set; }
|
|
|
|
[JsonPropertyName("value")]
|
|
public int Value { get; set; }
|
|
|
|
[JsonPropertyName("entity")]
|
|
public string? Entity { get; set; }
|
|
}
|
|
|
|
public enum ProfileChangeEventType
|
|
{
|
|
TraderSalesSum,
|
|
TraderStanding,
|
|
ProfileLevel,
|
|
SkillPoints,
|
|
ExamineAllItems,
|
|
UnlockTrader,
|
|
AssortmentUnlockRule,
|
|
HideoutAreaLevel
|
|
} |