Files
WatchIt/WatchIt.DTO/Models/Controllers/Media/Medium/Response/IMediumUserRatedResponse.cs

12 lines
250 B
C#
Raw Normal View History

using WatchIt.DTO.Models.Generics.Rating;
namespace WatchIt.DTO.Models.Controllers.Media.Medium.Response;
public interface IMediumUserRatedResponse
{
#region PROPERTIES
RatingUserResponse? RatingUser { get; set; }
#endregion
}