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

14 lines
291 B
C#
Raw Permalink Normal View History

2024-06-12 22:47:39 -07:00
#pragma warning disable CS1591
using Newtonsoft.Json;
namespace Discord.API.Rpc
{
internal class SetLocalVolumeResponse
{
[JsonProperty("user_id")]
public ulong UserId { get; set; }
[JsonProperty("volume")]
public int Volume { get; set; }
}
}