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

11 lines
143 B
C#

namespace isn.tests
{
internal interface IRing : IBody
{
IRing Add(IRing other);
IRing Mult<TBody>(TBody v);
}
}