9 lines
181 B
C#
9 lines
181 B
C#
using mROA.Implementation;
|
|
|
|
namespace Example.Shared;
|
|
|
|
[SharedObjectInterface]
|
|
public interface IPrinterFactory
|
|
{
|
|
TransmittedSharedObject<IPrinter> Create(string printerName);
|
|
} |