Files
Moonlight/Moonlight.Frontend/Shared/Frontend/FrontendConfiguration.cs

8 lines
191 B
C#

using System.Text.Json.Serialization;
namespace Moonlight.Frontend.Shared.Frontend;
public class FrontendConfiguration
{
[JsonPropertyName("name")] public string Name { get; set; }
}