mirror of
https://github.com/bitwarden/server
synced 2026-01-08 03:23:20 +00:00
9 lines
152 B
C#
9 lines
152 B
C#
namespace Bit.Test.Common.AutoFixture
|
|
{
|
|
public interface ISutProvider
|
|
{
|
|
Type SutType { get; }
|
|
ISutProvider Create();
|
|
}
|
|
}
|