mirror of
https://github.com/AlexMacocian/Slim.git
synced 2026-07-25 08:22:12 +00:00
13 lines
243 B
C#
13 lines
243 B
C#
namespace Slim.Tests.Models
|
|
{
|
|
public class IDisposableService : IIDisposableService
|
|
{
|
|
public bool DisposeCalled { get; set; }
|
|
|
|
public void Dispose()
|
|
{
|
|
this.DisposeCalled = true;
|
|
}
|
|
}
|
|
}
|