Files
imsInterface/interface/asm/dotnet/Oib5xGUI/src/main/csharp/com/IReceiver.cs
2025-06-06 09:15:13 +02:00

15 lines
202 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Itac.Oib
{
public interface IReceiver
{
void Start();
void Stop();
}
}