Remove Unused Struct "Property"

I'm so sorry, I forgot to remove the unused struct in previous commit.
This commit is contained in:
Mohammad Hadi Hosseinpour 2017-04-07 05:59:09 +04:30 committed by GitHub
parent 8055ab3162
commit d195584f5d

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;
}
}
}