20 lines
448 B
C#
20 lines
448 B
C#
using Stylet;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MainShell.DeviceMaintance.Model
|
|
{
|
|
public class DeviceMaintanceBaseViewModel : Screen
|
|
{
|
|
public event Action<bool> UiStateChangedEvent = null;
|
|
|
|
protected void OnUiStateChanged(bool uiStateChanged)
|
|
{
|
|
UiStateChangedEvent?.Invoke(uiStateChanged);
|
|
}
|
|
}
|
|
}
|