From 69b83082c856355de416b17c1dc73b3ad7505db1 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 12 Oct 2014 11:18:26 -0400 Subject: grab image sizes at discovery time --- MediaBrowser.Model/Entities/ChapterInfo.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'MediaBrowser.Model/Entities') 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 /// /// The image path. public string ImagePath { get; set; } + + /// + /// Gets or sets the height of the image. + /// + /// The height of the image. + public int? ImageHeight { get; set; } + + /// + /// Gets or sets the width of the image. + /// + /// The width of the image. + public int? ImageWidth { get; set; } } } -- cgit v1.2.3