mirror of
https://github.com/greenshot/greenshot
synced 2025-07-16 10:03:44 -07:00
20 lines
No EOL
441 B
C#
20 lines
No EOL
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; }
|
|
}
|
|
} |