mirror of
https://github.com/greenshot/greenshot.git
synced 2025-01-09 23:33:02 -08:00
20 lines
441 B
C#
20 lines
441 B
C#
using System.Drawing;
|
|
|
|
namespace GreenshotPlugin.Interfaces.Ocr
|
|
{
|
|
/// <summary>
|
|
/// Contains the information about a word
|
|
/// </summary>
|
|
public class Word
|
|
{
|
|
/// <summary>
|
|
/// The actual text for the word
|
|
/// </summary>
|
|
public string Text { get; set; }
|
|
|
|
/// <summary>
|
|
/// The bounds of the word
|
|
/// </summary>
|
|
public Rectangle Bounds { get; set; }
|
|
}
|
|
} |