blob: 0440d6a5455cd2c9ea6ee86b11afbb8e5446bc1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core.Commands;
using Tango.SharedUI;
namespace Tango.PPC.Jobs.Dialogs
{
public class ImportJobViewVM : DialogViewVM
{
private bool _importAndEdit;
public bool ImportAndEdit
{
get { return _importAndEdit; }
set { _importAndEdit = value; RaisePropertyChangedAuto(); }
}
}
}
|