36 lines
899 B
C#
36 lines
899 B
C#
using ArcGIS.Desktop.Framework.Contracts;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OliviaAddInPro
|
|
{
|
|
public class MarchandoUnaDeViewModel : PropertyChangedBase
|
|
{
|
|
|
|
private string textProceso;
|
|
public string TextProceso
|
|
{
|
|
get { return textProceso; }
|
|
set { base.SetProperty(ref textProceso, value, () => TextProceso); }
|
|
}
|
|
|
|
private string textEstado;
|
|
public string TextEstado
|
|
{
|
|
get { return textEstado; }
|
|
set { base.SetProperty(ref textEstado, value, () => TextEstado); }
|
|
}
|
|
private double progreso;
|
|
|
|
public double Progreso
|
|
{
|
|
get { return progreso; }
|
|
set { base.SetProperty(ref progreso, value, () => Progreso); }
|
|
}
|
|
|
|
}
|
|
}
|