1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-07-06 12:16:15 +02:00
bitwarden-mobile/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();
}
}