RemoteUserLeaveRoomArgs.cs 328 B

12345678910111213141516
  1. using System;
  2. namespace Vinno.FIS.TRTCClient
  3. {
  4. class RemoteUserLeaveRoomArgs : EventArgs
  5. {
  6. public string UserId { get; }
  7. public int Reason { get; }
  8. public RemoteUserLeaveRoomArgs(string userId, int reason)
  9. {
  10. UserId = userId;
  11. Reason = reason;
  12. }
  13. }
  14. }