Files
stream-cinema/StreamCinemaLib/API/MediaRating.cs

10 lines
146 B
C#

using System;
namespace StreamCinemaLib.API;
public class MediaRating
{
public double rating { get; set; }
public int votes { get; set; }
}