11 lines
192 B
C#
11 lines
192 B
C#
using mROA.Implementation;
|
|
|
|
namespace Example.Shared;
|
|
|
|
[SharedObjectInterface]
|
|
public interface IPrinter
|
|
{
|
|
string GetName();
|
|
Task<TransmittedSharedObject<IPage>> Print(string text);
|
|
|
|
} |