12 lines
264 B
C#
12 lines
264 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Dialog;
|
|
|
|
public class ChangeGroupMailOwnerRequest
|
|
{
|
|
[JsonPropertyName("dialogId")]
|
|
public string DialogId { get; set; }
|
|
|
|
[JsonPropertyName("uid")]
|
|
public string Uid { get; set; }
|
|
} |