Files

11 lines
441 B
C#
Raw Permalink Normal View History

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);