mirror of
https://github.com/BrianLima/UWPHook.git
synced 2024-11-13 19:12:02 +00:00
c38c1c4731
Replaced entrypoint from MainWindow to GamesWindows. Getting apps installed from the computer via powershell. Redesigning UWPHook with Material Design in XAML. Lots of code still in the works, it compiles, but is not functional yet, wait for future commits.
21 lines
432 B
C#
21 lines
432 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace UWPHook
|
|
{
|
|
public class AppEntryModel
|
|
{
|
|
public AppEntryModel()
|
|
{
|
|
this._entries = new ObservableCollection<AppEntry>();
|
|
}
|
|
|
|
private ObservableCollection<AppEntry> _entries;
|
|
|
|
public ObservableCollection<AppEntry> Entries
|
|
{
|
|
get { return _entries; }
|
|
set { _entries = value; }
|
|
}
|
|
}
|
|
}
|