using System;
using System.Collections.Generic;
using System.Text;
namespace HH.WMS.Utils.ExcelLibrary.BinaryFileFormat
{
public class StringOffset
{
///
/// Absolute stream position of first string of the portion
///
public UInt32 AbsolutePosition;
///
/// Relative record position of string
///
public UInt16 RelativePosition;
public UInt16 NotUsed;
}
}