26 lines
638 B
C#
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>();
|
|
}
|
|
}
|