10 lines
180 B
C#
10 lines
180 B
C#
namespace ProxyInterfaceSourceGeneratorTests.Source.Disposable
|
|
{
|
|
public interface IUpdate<T>
|
|
{
|
|
event EventHandler<T>? Update;
|
|
|
|
string Name { get; }
|
|
}
|
|
}
|