namespace SabreTools.Data.Models.OLE { /// /// The VersionedStream packet represents a stream with an application-specific version GUID. /// /// public class VersionedStream { /// /// MUST be a GUID (Packet Version). /// public GUID VersionGuid { get; set; } = new(); /// /// MUST be an IndirectPropertyName. /// public IndirectPropertyName StreamName { get; set; } = new(); } }