27 lines
678 B
C#
27 lines
678 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BodyshopUploader.ViewModels
|
|
{
|
|
public partial class LoginViewModel: BaseViewModel
|
|
{
|
|
private ObservableCollection<string> _invoiceList;
|
|
public ObservableCollection<string> InvoiceList
|
|
{
|
|
get { return _invoiceList; }
|
|
set { SetProperty(ref _invoiceList, value); }
|
|
}
|
|
|
|
private int _progress = 5;
|
|
public int Progress
|
|
{
|
|
get { return _progress; }
|
|
set { SetProperty(ref _progress, value); }
|
|
}
|
|
}
|
|
}
|