mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-02-01 09:32:21 -05:00
21 lines
382 B
C#
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;
|
|
}
|
|
} |