123456789101112131415161718 |
- using ManageLiteAV;
- using System;
- namespace Vinno.FIS.TRTCClient
- {
- class VideoFrameArrivedArgs : EventArgs
- {
- public TRTCVideoFrame Frame { get; }
- public string UserId { get; }
- public VideoFrameArrivedArgs(TRTCVideoFrame frame, string userId)
- {
- Frame = frame;
- UserId = userId;
- }
- }
- }
|