mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 12:08:37 +08:00
11 lines
171 B
C#
11 lines
171 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace mRemoteNG.Tools.Sorting
|
|
{
|
|
public interface Sortable
|
|
{
|
|
void Sort();
|
|
}
|
|
} |