Files
WatchIt/WatchIt.DTO/Models/Generics/Rating/RatingOverallResponse.cs

11 lines
235 B
C#
Raw Normal View History

namespace WatchIt.DTO.Models.Generics.Rating;
public class RatingOverallResponse : IRatingOverallResponse
{
#region PROPERTIES
public decimal? Rating { get; set; }
public long Count { get; set; }
#endregion
}