mirror of
https://github.com/AxioDL/optick.git
synced 2026-03-30 11:49:24 -07:00
21 lines
420 B
C#
21 lines
420 B
C#
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); }
|
|
}
|
|
}
|
|
}
|