mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Add inheritdoc.
This commit is contained in:
@@ -44,6 +44,7 @@ using Aaru.CommonTypes.Enums;
|
||||
using Aaru.CommonTypes.Structs;
|
||||
using Schemas;
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>Base interface for all writable images</summary>
|
||||
public interface IBaseWritableImage : IBaseImage
|
||||
{
|
||||
|
||||
@@ -42,6 +42,7 @@ using System.Collections.Generic;
|
||||
using Aaru.CommonTypes.Enums;
|
||||
using Aaru.CommonTypes.Structs;
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>Interface defining linear media (chips, game carts, etc) images</summary>
|
||||
public interface IByteAddressableImage : IBaseWritableImage
|
||||
{
|
||||
|
||||
@@ -41,6 +41,7 @@ namespace Aaru.CommonTypes.Interfaces;
|
||||
|
||||
using Aaru.CommonTypes.Enums;
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>Abstract class to implement disk image reading plugins.</summary>
|
||||
public interface IMediaImage : IBaseImage
|
||||
{
|
||||
|
||||
@@ -40,6 +40,7 @@ namespace Aaru.CommonTypes.Interfaces;
|
||||
|
||||
using Aaru.CommonTypes.Enums;
|
||||
|
||||
/// <inheritdoc cref="Aaru.CommonTypes.Interfaces.IMediaImage" />
|
||||
/// <summary>
|
||||
/// Abstract class to implement disk image writing plugins. TODO: This interface is subject to change until
|
||||
/// notice.
|
||||
|
||||
@@ -42,6 +42,7 @@ using System.Collections.Generic;
|
||||
using Aaru.CommonTypes.Enums;
|
||||
using Aaru.CommonTypes.Structs;
|
||||
|
||||
/// <inheritdoc cref="Aaru.CommonTypes.Interfaces.IOpticalMediaImage" />
|
||||
/// <summary>Defines an image that is writable and can store an optical disc (CD, DVD, etc)</summary>
|
||||
public interface IWritableOpticalImage : IWritableImage, IOpticalMediaImage
|
||||
{
|
||||
|
||||
@@ -41,6 +41,7 @@ namespace Aaru.CommonTypes.Interfaces;
|
||||
|
||||
using Aaru.CommonTypes.Structs;
|
||||
|
||||
/// <inheritdoc cref="Aaru.CommonTypes.Interfaces.ITapeImage" />
|
||||
/// <summary>Defines an image that is writable and can store information about a streaming, digital, tape</summary>
|
||||
public interface IWritableTapeImage : ITapeImage, IWritableImage
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user