ResultRow.cs
1 // Copyright (c) Microsoft Corporation 2 // The Microsoft Corporation licenses this file to you under the MIT license. 3 // See the LICENSE file in the project root for more information. 4 5 namespace PowerOCR.Models; 6 7 public struct ResultRow 8 { 9 public double Height { get; set; } 10 11 public double Top { get; set; } 12 13 public double Bottom { get; set; } 14 15 public int ID { get; set; } 16 }