17 lines
534 B
C#
17 lines
534 B
C#
using Microsoft.AspNetCore.Components;
|
|
using WatchIt.Website.Clients;
|
|
using WatchIt.Website.Components.Layout;
|
|
using WatchIt.Website.Services.Authentication;
|
|
|
|
namespace WatchIt.Website.Components.Pages;
|
|
|
|
public partial class SeriesListPage : Page
|
|
{
|
|
#region SERVICES
|
|
|
|
[Inject] private NavigationManager NavigationManager { get; set; } = null!;
|
|
[Inject] private IAuthenticationService AuthenticationService { get; set; } = null!;
|
|
[Inject] private IMediaClient MediaClient { get; set; } = null!;
|
|
|
|
#endregion
|
|
} |