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