Files
WatchIt/WatchIt.DTO/Models/Controllers/People/Person/PersonUserRatedResponse.cs

12 lines
268 B
C#
Raw Normal View History

using WatchIt.DTO.Models.Generics.Rating;
namespace WatchIt.DTO.Models.Controllers.People.Person;
public class PersonUserRatedResponse : PersonResponse
{
#region PROPERTIES
public RatingUserOverallResponse RatingUser { get; set; } = null!;
#endregion
}