Moved App.UI.Models to App.UI.ViewModels

This commit is contained in:
2025-09-17 17:49:00 +02:00
parent fc09de4b5a
commit 034ff2fcc7
3 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
using Adw; using Adw;
using App.UI.Models; using App.UI.ViewModels;
namespace App.UI; namespace App.UI;

View File

@@ -1,6 +1,6 @@
using System.ComponentModel; using System.ComponentModel;
namespace App.UI.Models; namespace App.UI.ViewModels;
public class PasswordStoreShortcut : INotifyPropertyChanged public class PasswordStoreShortcut : INotifyPropertyChanged
{ {

View File

@@ -1,4 +1,4 @@
namespace App.UI.Models; namespace App.UI.ViewModels;
using Adw; using Adw;
using Gtk; using Gtk;