aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming/AudioBook/AudioBookNameParserResult.cs
diff options
context:
space:
mode:
authorStepan <ste.martinek+git@gmail.com>2020-11-02 20:03:12 +0100
committerStepan <ste.martinek+git@gmail.com>2020-11-02 20:03:12 +0100
commit1e7177568887d0f808660454e5eb7ca7ebcd6998 (patch)
tree0359804e2c4d691a7cf476c7364cefded0ab2947 /Emby.Naming/AudioBook/AudioBookNameParserResult.cs
parent50a2ef9d8aaf92e8b69ced5ea2fcc8fa185fe675 (diff)
Add Name and Year parsing for audiobooks
Diffstat (limited to 'Emby.Naming/AudioBook/AudioBookNameParserResult.cs')
-rw-r--r--Emby.Naming/AudioBook/AudioBookNameParserResult.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Emby.Naming/AudioBook/AudioBookNameParserResult.cs b/Emby.Naming/AudioBook/AudioBookNameParserResult.cs
new file mode 100644
index 000000000..b28e259dd
--- /dev/null
+++ b/Emby.Naming/AudioBook/AudioBookNameParserResult.cs
@@ -0,0 +1,12 @@
+#nullable enable
+#pragma warning disable CS1591
+
+namespace Emby.Naming.AudioBook
+{
+ public struct AudioBookNameParserResult
+ {
+ public string Name { get; set; }
+
+ public int? Year { get; set; }
+ }
+}