9 lines
197 B
C#
9 lines
197 B
C#
namespace Lattice.Core.Docking.Abstractions;
|
|
|
|
public interface IDockCommand : System.Windows.Input.ICommand
|
|
{
|
|
string Name { get; }
|
|
string Icon { get; }
|
|
string GestureText { get; }
|
|
}
|