jellyfin/MediaBrowser.Model/DTO/MovieInfo.cs

12 lines
205 B
C#
Raw Normal View History

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