12 lines
208 B
C#
12 lines
208 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
namespace DMX2
|
|
{
|
|
public interface IDriverDMX
|
|
{
|
|
void Start();
|
|
void Stop();
|
|
int NbUniversMax { get;}
|
|
ICollection<UniversDMX> UniversAssocies{get;}
|
|
}
|
|
}
|