aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/ChapterInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Entities/ChapterInfo.cs')
-rw-r--r--MediaBrowser.Model/Entities/ChapterInfo.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/ChapterInfo.cs b/MediaBrowser.Model/Entities/ChapterInfo.cs
index 9da7a9caa..9d0bbc0d9 100644
--- a/MediaBrowser.Model/Entities/ChapterInfo.cs
+++ b/MediaBrowser.Model/Entities/ChapterInfo.cs
@@ -23,5 +23,17 @@ namespace MediaBrowser.Model.Entities
/// </summary>
/// <value>The image path.</value>
public string ImagePath { get; set; }
+
+ /// <summary>
+ /// Gets or sets the height of the image.
+ /// </summary>
+ /// <value>The height of the image.</value>
+ public int? ImageHeight { get; set; }
+
+ /// <summary>
+ /// Gets or sets the width of the image.
+ /// </summary>
+ /// <value>The width of the image.</value>
+ public int? ImageWidth { get; set; }
}
}