33 lines
480 B
C#
33 lines
480 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LAEPS.ViewModels
|
|
{
|
|
public class SettingViewModel : NavigateViewModelBase
|
|
{
|
|
#region 属性
|
|
|
|
|
|
#endregion
|
|
#region 命令
|
|
|
|
|
|
|
|
#endregion
|
|
public SettingViewModel(IContainerProvider containerProvider) : base(containerProvider)
|
|
{
|
|
|
|
|
|
}
|
|
#region 命令处理
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|