aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Providers/BookInfo.cs
blob: 7f8151e534e30bc09c62eb508ef1d053dd40fb59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#nullable disable

namespace MediaBrowser.Controller.Providers
{
    /// <summary>
    /// The lookup info for books.
    /// </summary>
    public class BookInfo : ItemLookupInfo
    {
        /// <summary>
        /// Gets or sets the name of the series the book belongs to.
        /// </summary>
        public string SeriesName { get; set; }
    }
}