Files
mRemoteNG/mRemoteV1/Tools/Sorting/Sortable.cs

11 lines
171 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace mRemoteNG.Tools.Sorting
{
public interface Sortable
{
void Sort();
}
}