mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-07-30 17:30:40 +00:00
11 lines
176 B
C#
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;
|
|
}
|