mirror of
https://github.com/AlexMacocian/Slim.git
synced 2026-07-15 15:19:59 +00:00
820b1c9c2e
Prepare integration project
12 lines
209 B
C#
12 lines
209 B
C#
namespace Slim.Tests.Models;
|
|
|
|
public class IDisposableService : IIDisposableService
|
|
{
|
|
public bool DisposeCalled { get; set; }
|
|
|
|
public void Dispose()
|
|
{
|
|
this.DisposeCalled = true;
|
|
}
|
|
}
|