Discord.Net/experiment/Discord.Net.Rpc/API/Rpc/Pan.cs
2024-06-13 17:47:39 +12:00

12 lines
236 B
C#

using Newtonsoft.Json;
namespace Discord.API.Rpc
{
internal class Pan
{
[JsonProperty("left")]
public float Left { get; set; }
[JsonProperty("right")]
public float Right { get; set; }
}
}