Files
rssotto-csharp-client/ModVersionChecker/model/TypeConfig.cs
Jose Conde 5e16f781b4 phase 1
2025-09-29 16:02:00 +02:00

26 lines
638 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace ModVersionChecker.model
{
public class TypeConfig
{
public string Id { get; set; } = string.Empty;
[JsonPropertyName("name")]
public string Name { get; set; } = string.Empty;
[JsonPropertyName("shortName")]
public string ShortName { get; set; } = string.Empty;
[JsonPropertyName("configValues")]
public Dictionary<string, string> ConfigValues { get; set; } = new Dictionary<string, string>();
}
}