update x dizionario optionsXML
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user