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; }
///
/// Gets the name.
///
/// The name.
string Name { get; }
///
/// Gets the identifier.
///
/// The identifier.
Guid Id { get; }
}
}