30 lines
995 B
C#
30 lines
995 B
C#
//----------------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by https://github.com/specklesystems/ProxyGenerator.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//----------------------------------------------------------------------------------------
|
|
|
|
#nullable enable
|
|
using System;
|
|
|
|
namespace ProxyInterfaceSourceGeneratorTests.Source
|
|
{
|
|
public partial class MixedVisibilityProxy : global::ProxyInterfaceSourceGeneratorTests.Source.IMixedVisibility
|
|
{
|
|
public global::ProxyInterfaceSourceGeneratorTests.Source.MixedVisibility _Instance { get; }
|
|
|
|
public string Foo { get => _Instance.Foo; }
|
|
|
|
|
|
public MixedVisibilityProxy(global::ProxyInterfaceSourceGeneratorTests.Source.MixedVisibility instance)
|
|
{
|
|
_Instance = instance;
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
#nullable restore |