@@ -1,13 +1,13 @@
|
||||
namespace ProxyInterfaceSourceGenerator.Models;
|
||||
|
||||
internal record ProxyData
|
||||
(
|
||||
string Namespace,
|
||||
string ShortInterfaceName,
|
||||
string FullInterfaceName,
|
||||
string FullRawTypeName,
|
||||
string ShortTypeName,
|
||||
string FullTypeName,
|
||||
List<string> Usings,
|
||||
bool ProxyBaseClasses
|
||||
);
|
||||
internal class ProxyData
|
||||
{
|
||||
public string Namespace { get; init; }
|
||||
public string ShortInterfaceName { get; init; }
|
||||
public string FullInterfaceName { get; init; }
|
||||
public string FullRawTypeName { get; init; }
|
||||
public string ShortTypeName { get; init; }
|
||||
public string FullTypeName { get; init; }
|
||||
public List<string> Usings { get; init; }
|
||||
public bool ProxyBaseClasses { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user