大量更新

This commit is contained in:
GG Z
2025-12-23 21:37:02 +08:00
parent 3fc465959b
commit b611efeed9
105 changed files with 5814 additions and 371 deletions

View File

@@ -0,0 +1,15 @@
using System.Collections.Generic;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace BoreholeExtract
{
public class CategoryConfig
{
[JsonConverter(typeof(StringEnumConverter))]
public Identify Id { get; set; } // 关键:用枚举做唯一键
public string Title { get; set; }
public List<string> Items { get; set; }
}
}