Added api methods to get movie special features

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-09-09 21:52:33 -04:00
parent 29cdf55e44
commit f68137ec4a
8 changed files with 104 additions and 0 deletions

View File

@@ -160,6 +160,9 @@ namespace MediaBrowser.Model.DTO
public SeriesInfo SeriesInfo { get; set; }
[ProtoMember(45)]
public MovieInfo MovieInfo { get; set; }
[ProtoMember(46)]
public bool IsNew { get; set; }
public bool IsType(Type type)

View File

@@ -0,0 +1,11 @@
using ProtoBuf;
namespace MediaBrowser.Model.DTO
{
[ProtoContract]
public class MovieInfo
{
[ProtoMember(1)]
public int SpecialFeatureCount { get; set; }
}
}

View File

@@ -37,6 +37,7 @@
<Compile Include="DTO\AudioInfo.cs" />
<Compile Include="DTO\AudioOutputFormats.cs" />
<Compile Include="DTO\DTOUserItemData.cs" />
<Compile Include="DTO\MovieInfo.cs" />
<Compile Include="DTO\SeriesInfo.cs" />
<Compile Include="Authentication\AuthenticationResult.cs" />
<Compile Include="DTO\DTOBaseItem.cs" />