1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 08:02:49 -05:00
Files
bitwarden/test/Common/AutoFixture/ISutProvider.cs
2021-11-12 20:48:05 -05:00

11 lines
164 B
C#

using System;
namespace Bit.Test.Common.AutoFixture
{
public interface ISutProvider
{
Type SutType { get; }
ISutProvider Create();
}
}