mirror of
https://github.com/bitwarden/server.git
synced 2025-01-06 19:28:08 +01:00
11 lines
162 B
C#
11 lines
162 B
C#
|
using System;
|
||
|
|
||
|
namespace Bit.Core.Test.AutoFixture
|
||
|
{
|
||
|
public interface ISutProvider
|
||
|
{
|
||
|
Type SutType { get; }
|
||
|
ISutProvider Create();
|
||
|
}
|
||
|
}
|