phase 1
This commit is contained in:
25
ModVersionChecker/model/TypeConfig.cs
Normal file
25
ModVersionChecker/model/TypeConfig.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
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>();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user