Cloneable
Cloneable copied to clipboard
Support constructors?
I have this model
class Foo
{
public Foo(int prop)
{
Prop = prop;
}
public int Prop {get;}
public string Str {get;set;}
}
the generated method calls a default constructor which does not exist
P.S. If it is OK, I could try to prepare a PR for this issue. This issue does not sound impossible