namespace SabreTools.Data.Models.OLE
{
///
/// The UnicodeString packet represents a Unicode string.
///
///
public class UnicodeString
{
///
/// The length in 16-bit Unicode characters of the field, including the null
/// terminator, but not including padding (if any).
///
public uint Length { get; set; }
///
/// If is zero, this field MUST be zero bytes in length. If is
/// nonzero, this field MUST be a null-terminated array of 16-bit Unicode characters, followed by zero
/// padding to a multiple of 4 bytes. The string represented by this field SHOULD NOT contain
/// embedded or additional trailing null characters.
///
public string Characters { get; set; } = string.Empty;
}
}