mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-14 22:40:18 +00:00
Use block namespaces
This commit is contained in:
parent
e629a383d4
commit
50a2876f7b
3 changed files with 101 additions and 98 deletions
|
@ -1,8 +1,9 @@
|
||||||
using Ryujinx.Ava.UI.ViewModels;
|
using Ryujinx.Ava.UI.ViewModels;
|
||||||
|
|
||||||
namespace Ryujinx.Ava.UI.Models;
|
namespace Ryujinx.Ava.UI.Models
|
||||||
|
|
||||||
public class AddModel : BaseModel
|
|
||||||
{
|
{
|
||||||
|
public class AddModel : BaseModel
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
namespace Ryujinx.Ava.UI.ViewModels;
|
namespace Ryujinx.Ava.UI.ViewModels
|
||||||
|
|
||||||
internal class UserProfileImageSelectorViewModel : BaseModel
|
|
||||||
{
|
{
|
||||||
|
internal class UserProfileImageSelectorViewModel : BaseModel
|
||||||
|
{
|
||||||
private bool _firmwareFound;
|
private bool _firmwareFound;
|
||||||
|
|
||||||
public bool FirmwareFound
|
public bool FirmwareFound
|
||||||
|
@ -14,4 +14,5 @@ internal class UserProfileImageSelectorViewModel : BaseModel
|
||||||
OnPropertyChanged();
|
OnPropertyChanged();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -5,10 +5,10 @@ using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Collections.ObjectModel;
|
using System.Collections.ObjectModel;
|
||||||
|
|
||||||
namespace Ryujinx.Ava.UI.ViewModels;
|
namespace Ryujinx.Ava.UI.ViewModels
|
||||||
|
|
||||||
public class UserSaveManagerViewModel : BaseModel
|
|
||||||
{
|
{
|
||||||
|
public class UserSaveManagerViewModel : BaseModel
|
||||||
|
{
|
||||||
private int _sortIndex;
|
private int _sortIndex;
|
||||||
private int _orderIndex;
|
private int _orderIndex;
|
||||||
private string _search;
|
private string _search;
|
||||||
|
@ -108,4 +108,5 @@ public class UserSaveManagerViewModel : BaseModel
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue