You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
UWPHook/UWPHook/AppEntryModel.cs

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; }
}
}
}