Discord.Net/experiment/Discord.Net.Rpc/API/Rpc/VoiceDevice.cs

13 lines
240 B
C#
Raw Permalink Normal View History

2024-06-12 22:47:39 -07:00
using Newtonsoft.Json;
namespace Discord.API.Rpc
{
internal class VoiceDevice
{
[JsonProperty("id")]
public string Id { get; set; }
[JsonProperty("name")]
public string Name { get; set; }
}
}