mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
22 lines
480 B
C#
22 lines
480 B
C#
|
|
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;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|