Files
Aaru/DiscImageChef.Devices/Remote/Consts.cs

9 lines
215 B
C#
Raw Normal View History

namespace DiscImageChef.Devices.Remote
{
public class Consts
{
public const string PacketId = "DICPACKT";
public const int PacketVersion = 1;
public const int MaxProtocol = 1;
}
}