mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-07 09:20:04 +01:00
11 lines
167 B
C#
11 lines
167 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Bit.Test.Common.AutoFixture
|
|||
|
{
|
|||
|
public interface ISutProvider
|
|||
|
{
|
|||
|
Type SutType { get; }
|
|||
|
ISutProvider Create();
|
|||
|
}
|
|||
|
}
|