diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-10-12 11:18:26 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-10-12 11:18:26 -0400 |
| commit | 69b83082c856355de416b17c1dc73b3ad7505db1 (patch) | |
| tree | a3a2a6a951fd88132a0fdff6df8d451099c38856 /MediaBrowser.Model/Entities/ChapterInfo.cs | |
| parent | 47915df62c3875781ebc58fe5cc13b31377f8aac (diff) | |
grab image sizes at discovery time
Diffstat (limited to 'MediaBrowser.Model/Entities/ChapterInfo.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/ChapterInfo.cs | 12 |
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; } } } |
