Files
XLIMS/XLIMS.PSV/ViewModels/SideItemViewModel.cs
Курнат Андрей f0e11d6379 first edit
2026-01-31 16:11:36 +03:00

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
}
}