Add PrimaryImageAspectRatio to user dto

This commit is contained in:
LukePulverenti
2013-03-08 11:40:01 -05:00
parent 6ff65ba278
commit dbf6081a9b
16 changed files with 69 additions and 29 deletions

View File

@@ -0,0 +1,8 @@

namespace MediaBrowser.Model.Dto
{
public interface IItemDto
{
double? PrimaryImageAspectRatio { get; set; }
}
}