mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
8 lines
130 B
C#
8 lines
130 B
C#
namespace Bit.Test.Common.AutoFixture;
|
|
|
|
public interface ISutProvider
|
|
{
|
|
Type SutType { get; }
|
|
ISutProvider Create();
|
|
}
|