19 lines
384 B
C#
19 lines
384 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace NetworkResurrector.Application.Events
|
|||
|
{
|
|||
|
public class MachineShutdown
|
|||
|
{
|
|||
|
public bool Success { get; }
|
|||
|
public string Status { get; }
|
|||
|
|
|||
|
public MachineShutdown(bool success, string status)
|
|||
|
{
|
|||
|
Success = success;
|
|||
|
Status = status;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|