mirror of
https://github.com/AxioDL/optick.git
synced 2026-03-30 11:49:24 -07:00
0d3ac1ec70
Passing settings through the start message.
23 lines
531 B
C#
23 lines
531 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Profiler.InfrastructureMvvm;
|
|
|
|
namespace Profiler.ViewModels
|
|
{
|
|
public class MainViewModel: BaseViewModel
|
|
{
|
|
public String Version { get { return Assembly.GetEntryAssembly().GetName().Version.ToString(); } }
|
|
|
|
private bool _isCapturing = false;
|
|
public bool IsCapturing
|
|
{
|
|
get { return _isCapturing; }
|
|
set { SetProperty(ref _isCapturing, value); }
|
|
}
|
|
}
|
|
}
|