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