VideoFrameArrivedArgs.cs 363 B

123456789101112131415161718
  1. using ManageLiteAV;
  2. using System;
  3. namespace Vinno.FIS.TRTCClient
  4. {
  5. class VideoFrameArrivedArgs : EventArgs
  6. {
  7. public TRTCVideoFrame Frame { get; }
  8. public string UserId { get; }
  9. public VideoFrameArrivedArgs(TRTCVideoFrame frame, string userId)
  10. {
  11. Frame = frame;
  12. UserId = userId;
  13. }
  14. }
  15. }