12 lines
287 B
C#
12 lines
287 B
C#
using ProxyInterfaceSourceGenerator.FileGenerators;
|
|
|
|
namespace ProxyInterfaceSourceGenerator;
|
|
|
|
internal record ContextData
|
|
{
|
|
public string? InterfaceName { get; init; }
|
|
|
|
public string? ClassName { get; init; }
|
|
|
|
public FileData FileData { get; init; } = default!;
|
|
} |