Files
Aaru/DiscImageChef.Core/Devices/Info/Properties.cs

66 lines
3.5 KiB
C#
Raw Normal View History

2018-09-01 19:22:46 +01:00
// /***************************************************************************
// The Disc Image Chef
// ----------------------------------------------------------------------------
//
// Filename : Properties.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Core.
//
// --[ Description ] ----------------------------------------------------------
//
// Contains the device info properties.
//
// --[ License ] --------------------------------------------------------------
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
// Copyright © 2011-2018 Natalia Portillo
// ****************************************************************************/
using System.Collections.Generic;
using DiscImageChef.Decoders.ATA;
using DiscImageChef.Decoders.SCSI;
using DiscImageChef.Decoders.SCSI.SSC;
using DiscImageChef.Devices;
namespace DiscImageChef.Core.Devices.Info
{
public partial class DeviceInfo
{
public byte[] AtaIdentify { get; }
public byte[] AtapiIdentify { get; }
public byte[] ScsiInquiryData { get; }
public Inquiry.SCSIInquiry? ScsiInquiry { get; }
public AtaErrorRegistersChs? AtaMcptError { get; }
public Dictionary<byte, byte[]> ScsiEvpdPages { get; }
public Modes.DecodedMode? ScsiMode { get; }
public byte[] ScsiModeSense6 { get; }
public byte[] ScsiModeSense10 { get; }
public byte[] MmcConfiguration { get; }
public Plextor PlextorFeatures { get; }
public KreonFeatures KreonFeatures { get; }
public byte[] BlockLimits { get; }
public byte[] DensitySupport { get; }
public DensitySupport.DensitySupportHeader? DensitySupportHeader { get; }
public byte[] MediumDensitySupport { get; }
public DensitySupport.MediaTypeSupportHeader? MediaTypeSupportHeader { get; }
public byte[] CID { get; }
public byte[] CSD { get; }
public byte[] ExtendedCSD { get; }
public byte[] SCR { get; }
public byte[] OCR { get; }
}
}