aboutsummaryrefslogtreecommitdiff
path: root/src/Commands/ICommand.cs
blob: 8515d48fe02832c57a74bc71c6a195395b1f44e5 (plain)
1
2
3
4
5
6
7
namespace iPhotoExtractor.Commands
{
    public interface ICommand
    {
        void Run();
    }
}