9 lines
108 B
C#
9 lines
108 B
C#
using System;
|
|
|
|
namespace PettingZoo.Model
|
|
{
|
|
public interface IConnection : IDisposable
|
|
{
|
|
}
|
|
}
|