Files
cms_thermo_active/Step.Model/DTOModels/DTONcSoftKeyModel.cs
T
Lucio Maranta 14ed9d010a Added NC softkeys:
- API config
- SignalR thread
- SignalR click handler
2018-03-20 09:04:48 +01:00

35 lines
724 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.DTOModels
{
public class DTONcSoftKeyModel
{
public int Id;
public bool Active;
public bool Value;
public override bool Equals(object obj)
{
var item = obj as DTONcSoftKeyModel;
if (Id != item.Id)
return false;
if (Active != item.Active)
return false;
if (Value != item.Value)
return false;
return true;
}
public override int GetHashCode()
{
return base.GetHashCode();
}
}
}