Files
TetraParkOCR/LibDataBase/TextPoint.cs
2025-12-23 10:35:27 +08:00

22 lines
383 B
C#

using System;
using System.Collections.Generic;
namespace LibDataBase
{
/// <summary>
/// 点
/// </summary>
public class TextPoint
{
public int x;
public int y;
public string txt;
public TextPoint(int x, int y,string txt)
{
this.x = x;
this.y = y;
this.txt = txt;
}
}
}