12 lines
295 B
C#
12 lines
295 B
C#
using WatchIt.DTO.Models.Generics.Rating;
|
|
|
|
namespace WatchIt.DTO.Models.Controllers.Media.Medium.Response;
|
|
|
|
public class MediumUserRatedResponse : MediumResponse, IMediumUserRatedResponse
|
|
{
|
|
#region PROPERTIES
|
|
|
|
public RatingUserResponse? RatingUser { get; set; }
|
|
|
|
#endregion
|
|
} |