mirror of https://github.com/duggerd/KFDtool.git
24 lines
505 B
C#
24 lines
505 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KFDtool.P25.TransferConstructs
|
|
{
|
|
public class BaseDevice
|
|
{
|
|
public enum DeviceTypeOptions
|
|
{
|
|
TwiKfdtool,
|
|
DliIp
|
|
}
|
|
|
|
public DeviceTypeOptions DeviceType { get; set; }
|
|
|
|
public TwiKfdtoolDevice TwiKfdtoolDevice { get; set; }
|
|
|
|
public DliIpDevice DliIpDevice { get; set; }
|
|
}
|
|
}
|