using System.Collections.Generic; using Vinno.IUS.Common.Client.ViewModels; namespace Flyinsono.Client.Test.ViewModels { public class TestViewModel : ViewModel { private string _uploadFilePath; public Command BrowseCommand { get; } public string UploadFilePath { get { return _uploadFilePath; } set { if (_uploadFilePath != value) { _uploadFilePath = value; OnPropertyChanged(() => UploadFilePath); } } } public TestViewModel() { BrowseCommand = new ButtonCommand(OnBrowse); } private void OnBrowse(object obj) { } } public class ImportBugsRequest { public string Version { get; set; } public IList Bugs { get; set; } public ImportBugsRequest() { Bugs = new List(); } } public class BugInfo { public int BugNo { get; set; } public string Title { get; set; } } }