This commit is contained in:
Mohammad Hadi Hosseinpour 2017-04-07 06:17:54 +04:30
commit ac54ac8404

View file

@ -642,23 +642,4 @@ namespace TeleSharp.Generator
return File.OpenWrite(path);
}
}
struct Property
{
public Property(string type, string name){
Type = type;
Name = name;
}
public string Type;
public string Name;
public override bool Equals(object obj)
{
if (obj.GetType() == typeof (Property))
{
return ((Property) obj).Type == Type && ((Property)obj).Name == Name;
}
return false;
}
}
}