using Prism.Mvvm;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using TeamAAS_VP.Core;
using TeamAAS_VP;
using static Org.BouncyCastle.Math.EC.ECCurve;
namespace TeamAAS_VP.Models
{
public class CurentApplicationSettings : BindableBase
{
public CurentApplicationSettings()
{
}
private string _CompanyTitle= "江苏新惕姆智能装备有限公司";
///
/// 公司名称标题
///
public string CompanyTitle
{
get { return _CompanyTitle; }
set { SetProperty(ref _CompanyTitle, value); }
}
private string _Title = "Team Vision";
public string Title
{
get { return _Title; }
set { SetProperty(ref _Title,value); }
}
private DateTime _DT = DateTime.Now;
public DateTime DT
{
get { return _DT; }
set { SetProperty(ref _DT, value); }
}
private Dictionary _RobotJogSetpDistance = new Dictionary();
public Dictionary RobotJogSetpDistance
{
get { return _RobotJogSetpDistance; }
set { SetProperty(ref _RobotJogSetpDistance, value); }
}
}
}