22 lines
387 B
C#
22 lines
387 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Dialog;
|
|
|
|
public record RemoveUserGroupMailRequest : IRequestData
|
|
{
|
|
[JsonPropertyName("dialogId")]
|
|
public string? DialogId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("uid")]
|
|
public string? Uid
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|