You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 line
424 B

  1. using System;
  2. namespace RenderHookAPI.Interface
  3. {
  4. [Serializable]
  5. public class ScreenshotReceivedEventArgs: MarshalByRefObject
  6. {
  7. public Int32 ProcessId { get; set; }
  8. public Screenshot Screenshot { get; set; }
  9. public ScreenshotReceivedEventArgs(Int32 processId, Screenshot screenshot)
  10. {
  11. ProcessId = processId;
  12. Screenshot = screenshot;
  13. }
  14. }
  15. }