OnlineClientEventArgs.cs 261 B

1234567891011121314
  1. using System;
  2. namespace Abp.RealTime
  3. {
  4. public class OnlineClientEventArgs : EventArgs
  5. {
  6. public IOnlineClient Client { get; }
  7. public OnlineClientEventArgs(IOnlineClient client)
  8. {
  9. Client = client;
  10. }
  11. }
  12. }