14 lines
379 B
C#
14 lines
379 B
C#
|
|
using Microsoft.AspNetCore.Components;
|
||
|
|
using WatchIt.Common.Model.Rating;
|
||
|
|
|
||
|
|
namespace WatchIt.Website.Components.Common.Subcomponents;
|
||
|
|
|
||
|
|
public partial class TitledDisplayRatingComponent : ComponentBase
|
||
|
|
{
|
||
|
|
#region PARAMETERS
|
||
|
|
|
||
|
|
[Parameter] public required RatingResponse Rating { get; set; }
|
||
|
|
[Parameter] public required string Title { get; set; }
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
}
|