2025-06-14 22:33:03 +03:00
|
|
|
using System;
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
using Nebula.Launcher.ServerListProviders;
|
|
|
|
|
|
|
|
|
|
namespace Nebula.Launcher.Models;
|
|
|
|
|
|
|
|
|
|
public record ListItemTemplate(Type ModelType, string IconKey, string Label);
|
|
|
|
|
public record ServerListTabTemplate(IServerListProvider ServerListProvider, string TabName);
|
|
|
|
|
public record ServerHubRecord(
|
|
|
|
|
[property:JsonPropertyName("name")] string Name,
|
2025-06-18 21:36:50 +03:00
|
|
|
[property:JsonPropertyName("url")] string MainUrl);
|