2017-07-07 15:46:32 +02:00
|
|
|
|
/*
|
2020-01-06 15:24:46 +01:00
|
|
|
|
* Copyright (c) 2020 ETH Zürich, Educational Development and Technology (LET)
|
2017-07-07 15:46:32 +02:00
|
|
|
|
*
|
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-12-03 15:43:48 +01:00
|
|
|
|
using SafeExamBrowser.Applications.Contracts.Resources.Icons;
|
2019-01-23 15:57:49 +01:00
|
|
|
|
|
2019-08-30 09:55:26 +02:00
|
|
|
|
namespace SafeExamBrowser.Client.Contracts
|
2017-07-07 15:46:32 +02:00
|
|
|
|
{
|
2018-03-06 11:38:12 +01:00
|
|
|
|
/// <summary>
|
2019-03-06 16:10:00 +01:00
|
|
|
|
/// The information about a notification.
|
2018-03-06 11:38:12 +01:00
|
|
|
|
/// </summary>
|
2017-07-17 16:59:50 +02:00
|
|
|
|
public interface INotificationInfo
|
2017-07-07 15:46:32 +02:00
|
|
|
|
{
|
2017-07-12 15:36:30 +02:00
|
|
|
|
/// <summary>
|
2017-07-17 16:59:50 +02:00
|
|
|
|
/// The tooltip for the notification.
|
2017-07-12 15:36:30 +02:00
|
|
|
|
/// </summary>
|
2017-07-17 16:59:50 +02:00
|
|
|
|
string Tooltip { get; }
|
2017-07-13 12:12:52 +02:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2017-07-17 16:59:50 +02:00
|
|
|
|
/// The resource providing the notification icon.
|
2017-07-13 12:12:52 +02:00
|
|
|
|
/// </summary>
|
2019-11-06 08:45:37 +01:00
|
|
|
|
IconResource IconResource { get; }
|
2017-07-07 15:46:32 +02:00
|
|
|
|
}
|
|
|
|
|
}
|