aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming/TV/EpisodePathParserResult.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Naming/TV/EpisodePathParserResult.cs')
-rw-r--r--Emby.Naming/TV/EpisodePathParserResult.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/Emby.Naming/TV/EpisodePathParserResult.cs b/Emby.Naming/TV/EpisodePathParserResult.cs
new file mode 100644
index 0000000000..9890c78a45
--- /dev/null
+++ b/Emby.Naming/TV/EpisodePathParserResult.cs
@@ -0,0 +1,17 @@
+
+namespace Emby.Naming.TV
+{
+ public class EpisodePathParserResult
+ {
+ public int? SeasonNumber { get; set; }
+ public int? EpisodeNumber { get; set; }
+ public int? EndingEpsiodeNumber { get; set; }
+ public string SeriesName { get; set; }
+ public bool Success { get; set; }
+
+ public bool IsByDate { get; set; }
+ public int? Year { get; set; }
+ public int? Month { get; set; }
+ public int? Day { get; set; }
+ }
+}