mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
10 lines
167 B
C#
10 lines
167 B
C#
using System;
|
|
|
|
namespace Bit.Test.Common.AutoFixture
|
|
{
|
|
public interface ISutProvider
|
|
{
|
|
Type SutType { get; }
|
|
ISutProvider Create();
|
|
}
|
|
}
|