mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-09-21 04:17:57 +08:00
33 lines
1009 B
C#
33 lines
1009 B
C#
namespace UglyToad.PdfPig.Export.Alto
|
|
{
|
|
using System;
|
|
using System.ComponentModel;
|
|
using System.Diagnostics;
|
|
using System.Xml.Serialization;
|
|
|
|
public partial class AltoDocument
|
|
{
|
|
/// <summary>
|
|
/// [Alto] Information to identify the image file from which the OCR text was created.
|
|
/// </summary>
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
[Serializable]
|
|
[DebuggerStepThrough]
|
|
[XmlType(Namespace = "http://www.loc.gov/standards/alto/ns-v4#")]
|
|
public class AltoSourceImageInformation
|
|
{
|
|
/// <remarks/>
|
|
[XmlElement("fileName")]
|
|
public string FileName { get; set; }
|
|
|
|
/// <remarks/>
|
|
[XmlElement("fileIdentifier")]
|
|
public AltoFileIdentifier[] FileIdentifiers { get; set; }
|
|
|
|
/// <remarks/>
|
|
[XmlElement("documentIdentifier")]
|
|
public AltoDocumentIdentifier[] DocumentIdentifiers { get; set; }
|
|
}
|
|
}
|
|
}
|