Files
Cleanuparr/code/Infrastructure/Interceptors/InterceptedService.cs
2025-02-16 03:20:00 +02:00

21 lines
382 B
C#

namespace Infrastructure.Interceptors;
public class InterceptedService : IInterceptedService
{
private object? _proxy;
public object Proxy
{
get
{
if (_proxy is null)
{
throw new Exception("Proxy is not set");
}
return _proxy;
}
set => _proxy = value;
}
}