mirror of
https://github.com/AlexMacocian/Plumsy.git
synced 2026-07-25 08:22:18 +00:00
13 lines
200 B
C#
13 lines
200 B
C#
using System.Extensions;
|
|
|
|
namespace Plum.Net.Tests.SimplePlugin;
|
|
|
|
public sealed class Main
|
|
{
|
|
public Main()
|
|
{
|
|
this.ThrowIfNull("this");
|
|
}
|
|
|
|
public bool ReturnTrue() => true;
|
|
} |