Files

21 lines
420 B
C#
Raw Permalink Normal View History

2019-03-24 13:15:45 +00:00
using Profiler.Data;
using Profiler.InfrastructureMvvm;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Profiler.ViewModels
{
class ThreadFilterViewModel : BaseViewModel
{
private FrameGroup _group = null;
public FrameGroup Group
{
get { return _group; }
set { SetProperty(ref _group, value); }
}
}
}