Files
Lab/theInterfacePro/Fixtures/ExampleFixture.cs
Boban 4a7ddacae4
All checks were successful
Log every push / log-push (push) Successful in 2s
initial design of domain
2026-06-07 22:09:45 +02:00

7 lines
128 B
C#

namespace Theinterfacepro.Fixtures;
public class ExampleFixture
{
public string Greet(string name) => $"Hello, {name}!";
}