mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 13:48:00 -05:00
24 lines
540 B
C#
24 lines
540 B
C#
namespace ApplicationTests.Mocks
|
|
{
|
|
public interface IScriptResolverMock
|
|
{
|
|
string Value { get; set; }
|
|
}
|
|
|
|
public class ScriptResolverMock : IScriptResolverMock
|
|
{
|
|
public string Value { get; set; }
|
|
}
|
|
public interface IScriptResolverGenericMock<T, V>
|
|
{
|
|
T Value { get; set; }
|
|
V Value2 { get; set; }
|
|
}
|
|
|
|
public class ScriptResolverGenericMock<T, V> : IScriptResolverGenericMock<T, V>
|
|
{
|
|
public T Value { get; set; }
|
|
public V Value2 { get; set; }
|
|
}
|
|
}
|