update x dizionario optionsXML

This commit is contained in:
2025-10-29 12:38:46 +01:00
parent eaea52f45d
commit 3f8f97c29e
5 changed files with 85 additions and 24 deletions
+3 -3
View File
@@ -30,9 +30,9 @@ namespace WebWindowComplex.DTO
public Dictionary<int,string> DictShape { get; set; } = new Dictionary<int, string>();
/// <summary>
/// XML opzioni HW da verifica JWD
/// Dizionario XML opzioni HW da verifica JWD x GroupId
/// </summary>
public string OptionsXml { get; set; } = string.Empty;
public Dictionary<int, string> DictOptionsXml { get; set; } = new Dictionary<int, string>();
#endregion Public Properties
@@ -52,7 +52,7 @@ namespace WebWindowComplex.DTO
return false;
if (SvgPreview != item.SvgPreview)
return false;
if (OptionsXml != item.OptionsXml)
if (!DictUtils.DictAreEqual(DictOptionsXml, item.DictOptionsXml))
return false;
if (!DictUtils.DictAreEqual(DictShape, item.DictShape))
return false;