12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using System.Collections.Generic;
- namespace MediaBrowser.Controller.Entities
- {
- public class Book : BaseItem, IHasTags
- {
- public override string MediaType
- {
- get
- {
- return Model.Entities.MediaType.Book;
- }
- }
- /// <summary>
- /// Gets or sets the tags.
- /// </summary>
- /// <value>The tags.</value>
- public List<string> Tags { get; set; }
- public string SeriesName { get; set; }
- /// <summary>
- ///
- /// </summary>
- public override string MetaLocation
- {
- get
- {
- return System.IO.Path.GetDirectoryName(Path);
- }
- }
- protected override bool UseParentPathToCreateResolveArgs
- {
- get
- {
- return !IsInMixedFolder;
- }
- }
- public Book()
- {
- Tags = new List<string>();
- }
- }
- }
|