mirror of
https://github.com/DuendeSoftware/products
synced 2026-05-23 17:08:21 +00:00
9 lines
262 B
C#
9 lines
262 B
C#
// Copyright (c) Duende Software. All rights reserved.
|
|
// See LICENSE in the project root for license information.
|
|
|
|
namespace Duende.Xunit.Playwright;
|
|
|
|
public class DelegateDisposable(Action onDispose) : IDisposable
|
|
{
|
|
public void Dispose() => onDispose();
|
|
}
|