MovieInfo.cs 205 B

1234567891011
  1. using ProtoBuf;
  2. namespace MediaBrowser.Model.DTO
  3. {
  4. [ProtoContract]
  5. public class MovieInfo
  6. {
  7. [ProtoMember(1)]
  8. public int SpecialFeatureCount { get; set; }
  9. }
  10. }