Cosmos/source/Cosmos.HAL2/BlockDevice/Ports/StoragePort.cs
2017-12-22 07:18:12 +03:00

14 lines
367 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Cosmos.HAL.BlockDevice.Registers;
namespace Cosmos.HAL.BlockDevice.Ports
{
public abstract class StoragePort : BlockDevice
{
public abstract PortType mPortType { get; }
public abstract string mPortName { get; }
public abstract uint mPortNumber { get; }
}
}