mirror of
https://github.com/Gericom/EveryFileExplorer.git
synced 2025-06-19 17:35:45 -04:00
13 lines
209 B
C#
13 lines
209 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace LibEveryFileExplorer.Files
|
|
{
|
|
public interface IChildReactive
|
|
{
|
|
void OnChildSave(ViewableFile File);
|
|
}
|
|
}
|