ViewBase.cs 232 B

1234567891011
  1. using FNZCM.BlazorWasm.Helpers;
  2. using Microsoft.AspNetCore.Components;
  3. namespace FNZCM.BlazorWasm.UI
  4. {
  5. public class ViewBase : ComponentBase
  6. {
  7. [Inject]
  8. protected ApiClient ApiClient { get; set; }
  9. }
  10. }