PowerToys/Plugins/Wox.Plugin.WebSearch/WebSearch.cs
2016-05-08 17:28:00 +01:00

40 lines
1005 B
C#

using System.IO;
using JetBrains.Annotations;
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
namespace Wox.Plugin.WebSearch
{
public class WebSearch
{
public const string DefaultIcon = "web_search.png";
public string Title { get; set; }
public string ActionKeyword { get; set; }
[NotNull]
private string _icon = DefaultIcon;
[NotNull]
public string Icon
{
get { return _icon; }
set
{
_icon = value;
IconPath = Path.Combine(Main.ImagesDirectory, value);
}
}
/// <summary>
/// All icon should be put under Images directory
/// </summary>
[NotNull]
[JsonIgnore]
internal string IconPath { get; private set; } = Path.Combine
(
Main.ImagesDirectory, DefaultIcon
);
public string Url { get; set; }
public bool Enabled { get; set; }
}
}