move RepositoryWindow to KeyKeeper.Views

This commit is contained in:
2025-12-05 15:45:02 +03:00
parent a021dbc63d
commit c7f9fc0099
2 changed files with 2 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vm="using:KeyKeeper.ViewModels"
x:Class="KeyKeeper.RepositoryWindow"
x:Class="KeyKeeper.Views.RepositoryWindow"
Title="KeyKeeper - Хранилище паролей"
CanResize="False"
Width="800"

View File

@@ -1,9 +1,8 @@
using System;
using Avalonia.Controls;
using KeyKeeper.ViewModels;
using KeyKeeper.Views;
namespace KeyKeeper;
namespace KeyKeeper.Views;
public partial class RepositoryWindow: Window
{