Add image strings to groups and mods to keep them in the json on saves.

This commit is contained in:
Ottermandias 2024-07-12 17:37:55 +02:00
parent 40be298d67
commit 22af545e8d
8 changed files with 19 additions and 0 deletions

View file

@ -51,6 +51,7 @@ public sealed class Mod : IMod
public string Description { get; internal set; } = string.Empty;
public string Version { get; internal set; } = string.Empty;
public string Website { get; internal set; } = string.Empty;
public string Image { get; internal set; } = string.Empty;
public IReadOnlyList<string> ModTags { get; internal set; } = [];