Files
NDecrypt/NDecrypt/ITool.cs
2019-04-11 11:17:21 -07:00

14 lines
210 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NDecrypt
{
public interface ITool
{
bool ProcessFile();
}
}