StringIntPair.cs
504 字节
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
/// <summary>
/// ocr矩阵合并
/// </summary>
public class StringIntPair
{
public string StringValue { get; set; }
public int IntValue { get; set; }
public StringIntPair(string StringValue, int IntValue)
{
this.StringValue = StringValue;
this.IntValue = IntValue;
}
}
}