public DataDyneIntentSlot Clone() { DataDyneIntentSlot slot = new DataDyneIntentSlot(Name, Type); slot.Value = Value; return(slot); }
public override bool Equals(object obj) { DataDyneIntentSlot slot = obj as DataDyneIntentSlot; if (slot == null) { return(false); } return(Equals(slot)); }
public bool Equals(DataDyneIntentSlot slot) { return(Name == slot.Name && Type == slot.Type); }