using System.Drawing;
namespace GreenshotPlugin.Interfaces.Ocr
{
///
/// Contains the information about a word
///
public class Word
{
///
/// The actual text for the word
///
public string Text { get; set; }
///
/// The bounds of the word
///
public Rectangle Bounds { get; set; }
}
}