namespace SabreTools.Data.Models.OLE
{
///
/// The ArrayDimension packet represents the size and index offset of a dimension of an array
/// property type.
///
///
public class ArrayDimension
{
///
/// An unsigned integer representing the size of the dimension.
///
public uint Size { get; set; }
///
/// A signed integer representing the index offset of the dimension. For
/// example, an array dimension that is to be accessed with a 0-based index would have the value
/// zero, whereas an array dimension that is to be accessed with a 1-based index would have the
/// value 0x00000001.
///
public int Value { get; set; }
}
}