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