36 lines
816 B
C#
36 lines
816 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static CMS_CORE_Library.Models.DataStructures;
|
|
|
|
namespace Thermo.Active.Model.DTOModels
|
|
{
|
|
public class DTOM156InputModel : M156InputIsNeededModel
|
|
{
|
|
public Dictionary<byte, string> Buttons;
|
|
public string Type;
|
|
public bool isM156 = true;
|
|
|
|
public override bool Equals(object obj)
|
|
{
|
|
if (!(obj is DTOM156InputModel item))
|
|
return false;
|
|
|
|
if (Process != item.Process)
|
|
return false;
|
|
|
|
if (Type != item.Type)
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
return base.GetHashCode();
|
|
}
|
|
}
|
|
}
|