mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-12 17:23:01 +00:00
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.Serialization` still builds the normal Nuget package that is used by all other projects and includes all namespaces.
63 lines
1.6 KiB
C#
63 lines
1.6 KiB
C#
namespace SabreTools.Data.Models.PlayJ
|
|
{
|
|
/// <summary>
|
|
/// PlayJ audio header / CDS entry header (V1)
|
|
/// </summary>
|
|
public sealed class AudioHeaderV1 : AudioHeader
|
|
{
|
|
/// <summary>
|
|
/// Download track ID
|
|
/// </summary>
|
|
/// <remarks>0xFFFFFFFF if unset</remarks>
|
|
public uint TrackID { get; set; }
|
|
|
|
/// <summary>
|
|
/// Offset to unknown data block 1
|
|
/// </summary>
|
|
public uint UnknownOffset1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// Offset to unknown data block 2
|
|
/// </summary>
|
|
public uint UnknownOffset2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// Offset to unknown data block 3
|
|
/// </summary>
|
|
public uint UnknownOffset3 { get; set; }
|
|
|
|
/// <summary>
|
|
/// Unknown
|
|
/// </summary>
|
|
/// <remarks>Always 0x00000001</remarks>
|
|
public uint Unknown1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// Unknown
|
|
/// </summary>
|
|
/// <remarks>Typically 0x00000001 in download titles</remarks>
|
|
public uint Unknown2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// Track year
|
|
/// </summary>
|
|
/// <remarks>0xFFFFFFFF if unset</remarks>
|
|
public uint Year { get; set; }
|
|
|
|
/// <summary>
|
|
/// Track number
|
|
/// </summary>
|
|
public byte TrackNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// Subgenre
|
|
/// </summary>
|
|
public Subgenre Subgenre { get; set; }
|
|
|
|
/// <summary>
|
|
/// Track duration in seconds
|
|
/// </summary>
|
|
public uint Duration { get; set; }
|
|
}
|
|
}
|