6 lines
137 B
C#
6 lines
137 B
C#
|
|
namespace WatchIt.DTO.Models.Generics.Rating;
|
||
|
|
|
||
|
|
public interface IRatingOverallResponse : IRatingResponse
|
||
|
|
{
|
||
|
|
long Count { get; set; }
|
||
|
|
}
|