9 lines
200 B
C#
9 lines
200 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Dialog;
|
|
|
|
public class SetDialogReadRequestData
|
|
{
|
|
[JsonPropertyName("dialogId")]
|
|
public List<string> DialogId { get; set; }
|
|
} |