8 lines
191 B
C#
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; }
|
|
} |