1234567891011121314151617181920 |
- using System;
- namespace Vinno.vCloud.Common.FIS.LiveVideos
- {
- public class RtcLiveEventArgs:EventArgs
- {
- public string RoomId { get; }
- public string UserSign { get; }
- public LiveVideoCommandType CommandType { get; }
- public RtcLiveEventArgs(string roomId,string userSign,LiveVideoCommandType commandType)
- {
- RoomId = roomId;
- UserSign = userSign;
- CommandType = commandType;
- }
- }
- }
|