2026-08-28 21:33:11 +01:00
|
|
|
|
2026-08-28 22:41:05 +01:00
|
|
|
public interface IBackendFixture
|
2026-08-28 21:33:11 +01:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The addresses the fixture bound to.
|
|
|
|
|
/// </summary>
|
|
|
|
|
IReadOnlyList<string> Addresses { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The service provider for the fixture host.
|
|
|
|
|
/// </summary>
|
|
|
|
|
IServiceProvider Services { get; }
|
2026-08-28 22:41:05 +01:00
|
|
|
}
|