mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
13 lines
299 B
C#
13 lines
299 B
C#
namespace Remotely.Server.Models.Messages;
|
|
|
|
public class ShowLoaderMessage
|
|
{
|
|
public ShowLoaderMessage(bool isShown, string statusMessage)
|
|
{
|
|
IsShown = isShown;
|
|
StatusMessage = statusMessage;
|
|
}
|
|
|
|
public bool IsShown { get; }
|
|
public string StatusMessage { get; }
|
|
} |