37 lines
751 B
C#
37 lines
751 B
C#
namespace MP.SPEC.Data
|
|
{
|
|
public class SelectFluxParams
|
|
{
|
|
#region Public Properties
|
|
|
|
public string IdxMacchina { get; set; } = "*";
|
|
public string CodFlux { get; set; } = "*";
|
|
|
|
#endregion Public Properties
|
|
|
|
#region Public Methods
|
|
|
|
|
|
|
|
public override bool Equals(object obj)
|
|
{
|
|
if (!(obj is SelectFluxParams item))
|
|
return false;
|
|
|
|
if (IdxMacchina != item.IdxMacchina)
|
|
return false;
|
|
if (CodFlux != item.CodFlux)
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
return base.GetHashCode();
|
|
}
|
|
|
|
#endregion Public Methods
|
|
}
|
|
}
|