变量的更改

This commit is contained in:
2025-07-04 22:16:28 +08:00
parent 61035aaf2e
commit f703e18523
28 changed files with 3758 additions and 1525 deletions

View File

@@ -0,0 +1,15 @@
using CapMachine.Wpf.Models.Tag;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Wpf.Models.TagJsonConfig
{
public class TagConfigRoot
{
public List<ShortValueTag> Tags { get; set; } = new List<ShortValueTag>();
}
}