Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/rail/VoiceChannelRemoveUsersResult.cs
2026-02-21 16:45:37 +08:00

14 lines
302 B
C#

using System.Collections.Generic;
namespace rail
{
public class VoiceChannelRemoveUsersResult : EventBase
{
public List<RailID> success_ids = new List<RailID>();
public RailVoiceChannelID voice_channel_id = new RailVoiceChannelID();
public List<RailID> failed_ids = new List<RailID>();
}
}