File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,11 @@ public class ExportCompleteEvent : EventBase
6464 [ JsonPropertyName ( "file_statuses" ) ]
6565 public Dictionary < string , FileExportStatus > FileStatuses { get ; set ; }
6666
67+ /// <summary>
68+ /// the target to export too
69+ /// </summary>
70+ public DataOrigin ? Target { get ; set ; }
71+
6772 [ Newtonsoft . Json . JsonConstructor ]
6873 [ System . Text . Json . Serialization . JsonConstructor ]
6974 public ExportCompleteEvent ( )
Original file line number Diff line number Diff line change @@ -101,6 +101,11 @@ public class ExportRequestEvent : EventBase
101101 [ JsonPropertyName ( "plug_in_assemblies" ) ]
102102 public List < string > PluginAssemblies { get ; private set ; }
103103
104+ /// <summary>
105+ /// the target to export too
106+ /// </summary>
107+ public DataOrigin ? Target { get ; set ; }
108+
104109 public ExportRequestEvent ( )
105110 {
106111 ErrorMessages = new List < string > ( ) ;
You can’t perform that action at this time.
0 commit comments