ShareX/HelpersLib/CodeMenuEntry.cs
michalx2 c591842691 Add extension filters to after capture actions
The context menu for file name variables was also refactored to be used for extension filters as well
2014-08-10 17:36:59 +02:00

23 lines
556 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HelpersLib
{
public abstract class CodeMenuEntry
{
protected readonly String _value, _description;
public CodeMenuEntry(string value, string description)
{
_value = value;
_description = description;
}
public String Value { get { return _value; } }
public String Description { get { return _description; } }
public abstract string ToPrefixString();
}
}