jellyfin/MediaBrowser.Model/DTO/MovieInfo.cs
LukePulverenti Luke Pulverenti luke pulverenti f68137ec4a Added api methods to get movie special features
2012-09-09 21:52:33 -04:00

12 lines
205 B
C#

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