Files
2026-03-27 16:37:56 +01:00

16 lines
329 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebWindowComplex
{
public class GeneralData
{
public string serializeStruct { get; set; } = "";
public Dictionary<string,string> DictParameter { get; set; } = new();
}
}