10 lines
146 B
C#
10 lines
146 B
C#
using System;
|
|
|
|
namespace StreamCinemaLib.API;
|
|
|
|
public class MediaRating
|
|
{
|
|
public double rating { get; set; }
|
|
public int votes { get; set; }
|
|
}
|