11 lines
204 B
C#
11 lines
204 B
C#
using System;
|
|
|
|
namespace StreamCinemaLib.API;
|
|
|
|
public class MediaRatings
|
|
{
|
|
public MediaRating? tmdb { get; set; }
|
|
public MediaRating? trakt { get; set; }
|
|
public MediaRating? overall { get; set; }
|
|
}
|