Started working on service implementation api

This commit is contained in:
Baumgartner Marcel
2023-11-14 17:54:15 +01:00
parent a1cd6b5cd9
commit d55490dd51
26 changed files with 494 additions and 69 deletions

View File

@@ -0,0 +1,11 @@
using Microsoft.AspNetCore.Components;
namespace Moonlight.App.Models.Abstractions;
public class ServiceUiPage
{
public string Name { get; set; }
public string Route { get; set; }
public string Icon { get; set; }
public ComponentBase Component { get; set; }
}