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