1
0
mirror of https://github.com/bitwarden/mobile synced 2024-12-26 00:35:04 +01:00
Bitwarden-app-android-iphon.../test/Common/AutoFixture/ISutProvider.cs
2022-04-26 17:21:17 +02:00

11 lines
167 B
C#

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