Update catena eventi x richiesta reset dizionario

This commit is contained in:
Samuele Locatelli
2025-11-03 16:42:37 +01:00
parent 15acb8936f
commit d4e1a73d57
8 changed files with 159 additions and 74 deletions
+19
View File
@@ -60,6 +60,25 @@ namespace WebWindowComplex.DTO
return true;
}
/// <summary>
/// Metodo di equality limitato al controllo del JWD
/// </summary>
/// <param name="obj"></param>
/// <returns></returns>
public bool JwdEqual(object obj)
{
if ((obj == null))
return false;
if (!(obj is LivePayload item))
return false;
if (CurrJwd != item.CurrJwd)
return false;
return true;
}
/// <summary>
/// Override hash method
/// </summary>