using System; namespace Vinno.FIS.TRTCClient { class RemoteUserLeaveRoomArgs : EventArgs { public string UserId { get; } public int Reason { get; } public RemoteUserLeaveRoomArgs(string userId, int reason) { UserId = userId; Reason = reason; } } }