1
0
Fork 0
mirror of https://github.com/bitwarden/android.git synced 2025-01-20 06:43:48 +03:00
bitwarden-android/test/Common/AutoFixture/ISutProvider.cs
2022-04-26 17:21:17 +02:00

10 lines
167 B
C#

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