Files
esiur-dotnet/Tests/Unit/Integration/EncryptedEchoResource.cs
T
2026-07-14 17:26:51 +03:00

11 lines
176 B
C#

using Esiur.Resource;
namespace Esiur.Tests.Unit.Integration;
[Resource]
public partial class EncryptedEchoResource
{
[Export]
public int Echo(int value) => value;
}