mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
General cleanup and refactor.
This commit is contained in:
@@ -30,24 +30,18 @@
|
||||
// Copyright © 2011-2022 Natalia Portillo
|
||||
// ****************************************************************************/
|
||||
|
||||
using Aaru.CommonTypes.Metadata;
|
||||
|
||||
namespace Aaru.Dto;
|
||||
|
||||
using Aaru.CommonTypes.Metadata;
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// DTO from a CD drive read offset
|
||||
/// </summary>
|
||||
/// <summary>DTO from a CD drive read offset</summary>
|
||||
public class CdOffsetDto : CdOffset
|
||||
{
|
||||
/// <summary>
|
||||
/// Build an empty DTO
|
||||
/// </summary>
|
||||
/// <summary>Build an empty DTO</summary>
|
||||
public CdOffsetDto() {}
|
||||
|
||||
/// <summary>
|
||||
/// Build a DTO using the specified offset and database ID
|
||||
/// </summary>
|
||||
/// <summary>Build a DTO using the specified offset and database ID</summary>
|
||||
/// <param name="offset">CD reading offset</param>
|
||||
/// <param name="id">Database ID</param>
|
||||
public CdOffsetDto(CdOffset offset, int id)
|
||||
@@ -60,8 +54,6 @@ public class CdOffsetDto : CdOffset
|
||||
Id = id;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Database ID
|
||||
/// </summary>
|
||||
/// <summary>Database ID</summary>
|
||||
public int Id { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user