mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 21:31:04 +00:00
18 lines
421 B
C#
18 lines
421 B
C#
namespace BinaryObjectScanner.Models.PlayJ
|
|
{
|
|
/// <summary>
|
|
/// PlayJ playlist file
|
|
/// </summary>
|
|
public sealed class Playlist
|
|
{
|
|
/// <summary>
|
|
/// Playlist header
|
|
/// </summary>
|
|
public PlaylistHeader Header { get; set; }
|
|
|
|
/// <summary>
|
|
/// Embedded audio files / headers
|
|
/// </summary>
|
|
public AudioFile[] AudioFiles { get; set; }
|
|
}
|
|
} |