Files
modernkeepass/ModernKeePass.Application/Common/Interfaces/INotificationService.cs

7 lines
160 B
C#
Raw Permalink Normal View History

2020-04-22 18:12:28 +02:00
namespace ModernKeePass.Application.Common.Interfaces
{
public interface INotificationService
{
void Show(string title, string text);
}
}