using System; using System.Collections.Generic; using System.Text; using System.IO; namespace HH.WMS.Utils.ExcelLibrary.BinaryFileFormat { /// /// Indicates the end of workbook globals, a worksheet, a chart, etc. /// public partial class EOF : Record { public EOF(Record record) : base(record) { } public EOF() { this.Type = RecordType.EOF; } } }