moved to MVVM architecture

This commit is contained in:
2026-08-08 21:24:02 +05:00
parent a1ff8cc923
commit 3d614255d8
19 changed files with 565 additions and 346 deletions
@@ -0,0 +1,12 @@
using CommunityToolkit.Mvvm.ComponentModel;
namespace CursorLang.ViewModels;
/// <summary>
/// Содержимое подсказки у курсора.
/// </summary>
public sealed partial class LayoutPopupViewModel : ObservableObject
{
[ObservableProperty]
private string _shortName = "—";
}