diff options
Diffstat (limited to 'MediaBrowser.Model/Dto/IItemDto.cs')
| -rw-r--r-- | MediaBrowser.Model/Dto/IItemDto.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Dto/IItemDto.cs b/MediaBrowser.Model/Dto/IItemDto.cs new file mode 100644 index 000000000..3e7d1c608 --- /dev/null +++ b/MediaBrowser.Model/Dto/IItemDto.cs @@ -0,0 +1,15 @@ + +namespace MediaBrowser.Model.Dto +{ + /// <summary> + /// Interface IItemDto + /// </summary> + public interface IItemDto + { + /// <summary> + /// Gets or sets the primary image aspect ratio. + /// </summary> + /// <value>The primary image aspect ratio.</value> + double? PrimaryImageAspectRatio { get; set; } + } +} |
