Files
isn/test/isn.tests/IBody.cs
2021-09-03 03:07:58 +01:00

12 lines
190 B
C#

namespace isn.tests
{
internal interface IBody
{
/// <summary>
/// The mult
/// </summary>
/// <returns></returns>
T Action<T>(T v);
}
}