d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
13 lines
268 B
C#
13 lines
268 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Dialog;
|
|
|
|
public record RemoveMailMessageRequest : IRequestData
|
|
{
|
|
|
|
|
|
[JsonPropertyName("dialogId")]
|
|
public string? DialogId { get; set; }
|
|
}
|