Fixed TryFindProxyDataByTypeName (#30)
* pnp * . * . * okee * ns * . * o * . * , * x * t * co * . * r * CastTo
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace ProxyInterfaceSourceGenerator.Models;
|
||||
|
||||
internal record ConstraintInfo(string Type, List<string> Items)
|
||||
{
|
||||
public override string ToString()
|
||||
{
|
||||
return Items.Any() ? $" where {Type} : {string.Join(", ", Items)}" : string.Empty;
|
||||
}
|
||||
}
|
||||
@@ -5,8 +5,9 @@ internal record ProxyData
|
||||
string Namespace,
|
||||
string ShortInterfaceName,
|
||||
string FullInterfaceName,
|
||||
string RawTypeName,
|
||||
string TypeName,
|
||||
string FullRawTypeName,
|
||||
string ShortTypeName,
|
||||
string FullTypeName,
|
||||
List<string> Usings,
|
||||
bool ProxyBaseClasses
|
||||
);
|
||||
Reference in New Issue
Block a user