using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Microsoft.Plugin.WindowWalker.Components
{
class WindowResult : Window
{
///
/// Number of letters in between constant for when
/// the result hasn't been set yet
///
public const int NoResult = -1;
///
/// Properties that signify how many characters (including spaces)
/// were found when matching the results
///
public int LettersInBetweenScore
{
get;
set;
}
///
/// Constructor for WindowResult
///
public WindowResult(Window window) : base(window.Hwnd)
{
LettersInBetweenScore = WindowResult.NoResult;
}
}
}