using Robust.Shared.Audio;
using Robust.Shared.Prototypes;
namespace Content.Shared.Audio.Jukebox;
///
/// Soundtrack that's visible on the jukebox list.
///
[Prototype]
public sealed partial class JukeboxPrototype : IPrototype
{
[IdDataField]
public string ID { get; private set; } = string.Empty;
///
/// User friendly name to use in UI.
///
[DataField(required: true)]
public string Name = string.Empty;
[DataField(required: true)]
public SoundPathSpecifier Path = default!;
}