Files
Moonlight/Moonlight/Features/Servers/Models/ServerParseConfig.cs
2024-01-28 13:58:23 +01:00

8 lines
241 B
C#

namespace Moonlight.Features.Servers.Models;
public class ServerParseConfig
{
public string Type { get; set; } = "";
public string File { get; set; } = "";
public Dictionary<string, string> Configuration { get; set; } = new();
}