22 lines
527 B
C#
22 lines
527 B
C#
using Microsoft.AspNetCore.Components;
|
|
using WatchIt.Website.Services.WebAPI.Media;
|
|
|
|
namespace WatchIt.Website.Components.Pages.MediaPage.Panels;
|
|
|
|
public partial class ActorRolesPanelComponent : ComponentBase
|
|
{
|
|
#region SERVICES
|
|
|
|
[Inject] private IMediaWebAPIService MediaWebAPIService { get; set; } = default!;
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region PARAMETERS
|
|
|
|
[Parameter] public string Class { get; set; } = string.Empty;
|
|
[Parameter] public required long Id { get; set; }
|
|
|
|
#endregion
|
|
} |