Files
PowerToys/src/modules/launcher/Wox.Plugin/ToolTipData.cs

22 lines
480 B
C#
Raw Normal View History

using System;
namespace Wox.Plugin
{
public class ToolTipData
{
public string Title { get; private set; }
public string Text { get; private set; }
public ToolTipData(string title, string text)
{
if(string.IsNullOrEmpty(title))
{
throw new ArgumentException("title cannot be null or empty", "title");
}
Title = title;
Text = text;
}
}
}