mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 21:31:04 +00:00
18 lines
411 B
C#
18 lines
411 B
C#
namespace BinaryObjectScanner.Models.PlayJ
|
|
{
|
|
/// <summary>
|
|
/// PlayJ playlist header
|
|
/// </summary>
|
|
public sealed class PlaylistHeader
|
|
{
|
|
/// <summary>
|
|
/// Number of tracks contained within the playlist
|
|
/// </summary>
|
|
public uint TrackCount;
|
|
|
|
/// <summary>
|
|
/// 52 bytes of unknown data
|
|
/// </summary>
|
|
public byte[] Data;
|
|
}
|
|
} |