46 lines
979 B
C#
46 lines
979 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using XLIMS.MVVM.Base;
|
|
|
|
namespace XLIMS.PSV.ViewModels
|
|
{
|
|
public class SideItemViewModel:ViewModelBase
|
|
{
|
|
#region Constructor
|
|
public SideItemViewModel(int index,string title)
|
|
{
|
|
_index = index;
|
|
_title = title;
|
|
}
|
|
#endregion //Constructor
|
|
|
|
#region Events
|
|
#endregion //Events
|
|
|
|
#region Fields
|
|
private int _index;
|
|
private string _title;
|
|
#endregion //Fields
|
|
|
|
#region Properties
|
|
public string Title
|
|
{
|
|
get => _title;
|
|
set { _title = value; OnPropertyChanged(); }
|
|
}
|
|
public int Index
|
|
{
|
|
get => _index;
|
|
set { _index = value; OnPropertyChanged(); }
|
|
}
|
|
#endregion //Properties
|
|
|
|
#region Methods
|
|
#endregion //Methods
|
|
|
|
#region Commands
|
|
#endregion //Commands
|
|
}
|
|
}
|