agrobot_base/AgroBase/OperationControl/ViewModels/Views/Operacao/Diagnostico/DiagnosticoGraficoSerieView...

30 lines
736 B
C#

using OperationControl.ViewModels.Base;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OperationControl.ViewModels.Views.Operacao.Diagnostico
{
public class DiagnosticoGraficoSerieViewModel : NotifyBase
{
private string _label;
public string Label
{
get => _label;
set => SetProperty(ref _label, value);
}
private string _unidade;
public string Unidade
{
get => _unidade;
set => SetProperty(ref _unidade, value);
}
public ObservableCollection<double> Valores { get; } = new();
}
}