Files
Discord.Net/experiment/Discord.Net.Rpc/API/Rpc/Pan.cs
2018-01-05 20:23:19 -05:00

13 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; }
}
}