blob: 71a70d9db32a0a8155078a78daea8201a23e68da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core;
namespace Tango.PPC.Maintenance
{
public class GuideStep : ExtendedObject
{
public Object Text { get; set; }
private bool _isChecked;
public bool IsChecked
{
get { return _isChecked; }
set { _isChecked = value; RaisePropertyChangedAuto(); }
}
}
}
|