mirror of
https://github.com/AlexMacocian/Slim.git
synced 2026-07-15 15:19:59 +00:00
820b1c9c2e
Prepare integration project
9 lines
140 B
C#
9 lines
140 B
C#
using System;
|
|
|
|
namespace Slim.Tests.Models;
|
|
|
|
public interface IIDisposableService : IDisposable
|
|
{
|
|
bool DisposeCalled { get; set; }
|
|
}
|