Files
hannibalstealer/IFolders.cs
T

10 lines
133 B
C#
Raw Normal View History

2026-08-27 11:22:57 -06:00
namespace SHARP
{
public interface IFolders
{
string Source { get; }
string Target { get; }
}
}