seb-win-refactoring/SafeExamBrowser.Server.Contracts/Events/LockScreenRequestedEventHandler.cs

15 lines
352 B
C#
Raw Normal View History

2022-08-31 14:11:19 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SafeExamBrowser.Server.Contracts.Events
{
/// <summary>
/// Event handler used to handle a requested lock screen from SEB Server
/// </summary>
public delegate void LockScreenRequestedEventHandler(String message);
}