IHasSoundtracks.cs 403 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Controller.Entities
  4. {
  5. /// <summary>
  6. /// Interface IHasSoundtracks
  7. /// </summary>
  8. public interface IHasSoundtracks
  9. {
  10. /// <summary>
  11. /// Gets or sets the soundtrack ids.
  12. /// </summary>
  13. /// <value>The soundtrack ids.</value>
  14. List<Guid> SoundtrackIds { get; set; }
  15. }
  16. }