MpnAttachProp.cs 254 B

1234567891011121314
  1. namespace MeidoPhotoStudio.Plugin;
  2. public readonly struct MpnAttachProp
  3. {
  4. public MpnAttachProp(MPN tag, string menuFile)
  5. {
  6. Tag = tag;
  7. MenuFile = menuFile;
  8. }
  9. public MPN Tag { get; }
  10. public string MenuFile { get; }
  11. }