ProcStartEventArgs.cs 196 B

1234567891011
  1. using System;
  2. namespace MeidoPhotoStudio.Plugin;
  3. public class ProcStartEventArgs : EventArgs
  4. {
  5. public readonly Maid Maid;
  6. public ProcStartEventArgs(Maid maid) =>
  7. Maid = maid;
  8. }