Implemented v2.0 image import

This commit is contained in:
2024-12-08 13:25:44 +01:00
parent ebab0daf26
commit 121c2482f8
3 changed files with 152 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
namespace MoonlightServers.ApiServer.Models.Stars;
public class LegacyImageParseConfigModel
{
public string Type { get; set; } = "";
public string File { get; set; } = "";
public Dictionary<string, string> Configuration { get; set; } = new();
}