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