aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming/AudioBook/AudioBookInfo.cs
diff options
context:
space:
mode:
authorstefan <stefan@hegedues.at>2018-09-12 19:26:21 +0200
committerstefan <stefan@hegedues.at>2018-09-12 19:26:21 +0200
commit48facb797ed912e4ea6b04b17d1ff190ac2daac4 (patch)
tree8dae77a31670a888d733484cb17dd4077d5444e8 /Emby.Naming/AudioBook/AudioBookInfo.cs
parentc32d8656382a0eacb301692e0084377fc433ae9b (diff)
Update to 3.5.2 and .net core 2.1
Diffstat (limited to 'Emby.Naming/AudioBook/AudioBookInfo.cs')
-rw-r--r--Emby.Naming/AudioBook/AudioBookInfo.cs40
1 files changed, 40 insertions, 0 deletions
diff --git a/Emby.Naming/AudioBook/AudioBookInfo.cs b/Emby.Naming/AudioBook/AudioBookInfo.cs
new file mode 100644
index 0000000000..e039e5359a
--- /dev/null
+++ b/Emby.Naming/AudioBook/AudioBookInfo.cs
@@ -0,0 +1,40 @@
+using System.Collections.Generic;
+using Emby.Naming.Video;
+
+namespace Emby.Naming.AudioBook
+{
+ /// <summary>
+ /// Represents a complete video, including all parts and subtitles
+ /// </summary>
+ public class AudioBookInfo
+ {
+ /// <summary>
+ /// Gets or sets the name.
+ /// </summary>
+ /// <value>The name.</value>
+ public string Name { get; set; }
+ public int? Year { get; set; }
+ /// <summary>
+ /// Gets or sets the files.
+ /// </summary>
+ /// <value>The files.</value>
+ public List<AudioBookFileInfo> Files { get; set; }
+ /// <summary>
+ /// Gets or sets the extras.
+ /// </summary>
+ /// <value>The extras.</value>
+ public List<AudioBookFileInfo> Extras { get; set; }
+ /// <summary>
+ /// Gets or sets the alternate versions.
+ /// </summary>
+ /// <value>The alternate versions.</value>
+ public List<AudioBookFileInfo> AlternateVersions { get; set; }
+
+ public AudioBookInfo()
+ {
+ Files = new List<AudioBookFileInfo>();
+ Extras = new List<AudioBookFileInfo>();
+ AlternateVersions = new List<AudioBookFileInfo>();
+ }
+ }
+}