9 lines
186 B
C#
9 lines
186 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Profile;
|
|
|
|
public class ProfileChangeVoiceRequestData
|
|
{
|
|
[JsonPropertyName("voice")]
|
|
public string Voice { get; set; }
|
|
} |