using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Entities
{
///
/// Interface IHasSoundtracks
///
public interface IHasSoundtracks
{
///
/// Gets or sets the soundtrack ids.
///
/// The soundtrack ids.
List SoundtrackIds { get; set; }
}
}