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

13 lines
236 B
C#
Raw Normal View History

2024-06-12 22:47:39 -07:00
using Newtonsoft.Json;
namespace Discord.API.Rpc
{
internal class Pan
{
[JsonProperty("left")]
public float Left { get; set; }
[JsonProperty("right")]
public float Right { get; set; }
}
}