12 lines
253 B
C#
12 lines
253 B
C#
using CursorLang.Models;
|
|
|
|
namespace CursorLang.Services;
|
|
|
|
/// <summary>
|
|
/// Показывает подсказку с раскладкой у курсора.
|
|
/// </summary>
|
|
public interface ILayoutPopupService
|
|
{
|
|
void Show(KeyboardLayout layout);
|
|
}
|