seb-win-refactoring/SafeExamBrowser.Client/Notifications/LogNotificationInfo.cs

27 lines
790 B
C#
Raw Normal View History

2017-08-07 12:23:56 +02:00
/*
* Copyright (c) 2019 ETH Zürich, Educational Development and Technology (LET)
2017-08-07 12:23:56 +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/.
*/
using SafeExamBrowser.Client.Contracts;
using SafeExamBrowser.Core.Contracts;
using SafeExamBrowser.I18n.Contracts;
2017-08-07 12:23:56 +02:00
namespace SafeExamBrowser.Client.Notifications
2017-08-07 12:23:56 +02:00
{
internal class LogNotificationInfo : INotificationInfo
2017-08-07 12:23:56 +02:00
{
public string Tooltip { get; private set; }
public IIconResource IconResource { get; private set; }
2017-08-07 12:23:56 +02:00
public LogNotificationInfo(IText text)
{
Tooltip = text.Get(TextKey.Notification_LogTooltip);
IconResource = new LogNotificationIconResource();
2017-08-07 12:23:56 +02:00
}
}
}