mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
13 lines
313 B
C#
13 lines
313 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Marechai.Database.Models;
|
|
|
|
namespace Marechai.Pages.Admin
|
|
{
|
|
public partial class BrowserTests
|
|
{
|
|
List<BrowserTest> _tests;
|
|
|
|
protected override async Task OnInitializedAsync() => _tests = await Service.GetAsync();
|
|
}
|
|
} |