1
0
mirror of https://github.com/bitwarden/server synced 2025-12-23 19:53:40 +00:00
Files
server/test/Common/AutoFixture/ISutProvider.cs
2021-10-30 13:19:40 -04:00

11 lines
164 B
C#

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