PresetChangeEventArgs.cs 392 B

123456789101112131415161718
  1. using System;
  2. namespace MeidoPhotoStudio.Plugin;
  3. public class PresetChangeEventArgs : EventArgs
  4. {
  5. public PresetChangeEventArgs(string path, string category)
  6. {
  7. Path = path;
  8. Category = category;
  9. }
  10. public static new PresetChangeEventArgs Empty { get; } = new(string.Empty, string.Empty);
  11. public string Category { get; }
  12. public string Path { get; }
  13. }