13 lines
314 B
C#
13 lines
314 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!;
|
|
}
|
|
} |