24 lines
465 B
C#
24 lines
465 B
C#
using Prism.Mvvm;
|
|
|
|
namespace XP.Scan.ViewModels
|
|
{
|
|
public class MainWindowViewModel : BindableBase
|
|
{
|
|
private string _title = "XplorePlane";
|
|
|
|
public string Title
|
|
{
|
|
get => _title;
|
|
set => SetProperty(ref _title, value);
|
|
}
|
|
}
|
|
|
|
public class AcquisitionMode
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
|
|
public override string ToString() => Name;
|
|
}
|
|
}
|