namespace BinaryObjectScanner.Models.PlayJ
{
///
/// PlayJ playlist header
///
public sealed class PlaylistHeader
{
///
/// Number of tracks contained within the playlist
///
public uint TrackCount;
///
/// 52 bytes of unknown data
///
public byte[] Data;
}
}