Files
ZuneUIXTools/ZuneUIXTools.ViewModels/IrisProjectViewModel.cs
T

33 lines
902 B
C#

using Microsoft.Toolkit.Mvvm.ComponentModel;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Text;
namespace ZuneUIXTools.ViewModels
{
public class IrisProjectViewModel : ObservableObject
{
private ObservableCollection<UIXDocumentViewModel> _uixDocuments;
public ObservableCollection<UIXDocumentViewModel> UIXDocuments
{
get => _uixDocuments;
set => SetProperty(ref _uixDocuments, value);
}
private string _name;
public string Name
{
get => _name;
set => SetProperty(ref _name, value);
}
private UIXDocumentViewModel _selectedDocument;
public UIXDocumentViewModel SelectedDocument
{
get => _selectedDocument;
set => SetProperty(ref _selectedDocument, value);
}
}
}