mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
General code cleanup and style refactor.
This commit is contained in:
@@ -48,17 +48,17 @@
|
|||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.4.3" PrivateAssets="all" />
|
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.4.3" PrivateAssets="all"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="CdOffsetDto.cs" />
|
<Compile Include="CdOffsetDto.cs"/>
|
||||||
<Compile Include="DeviceDto.cs" />
|
<Compile Include="DeviceDto.cs"/>
|
||||||
<Compile Include="NesHeaderDto.cs" />
|
<Compile Include="NesHeaderDto.cs"/>
|
||||||
<Compile Include="SyncDto.cs" />
|
<Compile Include="SyncDto.cs"/>
|
||||||
<Compile Include="UsbProductDto.cs" />
|
<Compile Include="UsbProductDto.cs"/>
|
||||||
<Compile Include="UsbVendorDto.cs" />
|
<Compile Include="UsbVendorDto.cs"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Aaru.CommonTypes\Aaru.CommonTypes.csproj" />
|
<ProjectReference Include="..\Aaru.CommonTypes\Aaru.CommonTypes.csproj"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
@@ -30,10 +30,10 @@
|
|||||||
// Copyright © 2011-2022 Natalia Portillo
|
// Copyright © 2011-2022 Natalia Portillo
|
||||||
// ****************************************************************************/
|
// ****************************************************************************/
|
||||||
|
|
||||||
namespace Aaru.Dto;
|
|
||||||
|
|
||||||
using Aaru.CommonTypes.Metadata;
|
using Aaru.CommonTypes.Metadata;
|
||||||
|
|
||||||
|
namespace Aaru.Dto;
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
/// <summary>DTO from a CD drive read offset</summary>
|
/// <summary>DTO from a CD drive read offset</summary>
|
||||||
public class CdOffsetDto : CdOffset
|
public class CdOffsetDto : CdOffset
|
||||||
|
|||||||
@@ -30,15 +30,13 @@
|
|||||||
// Copyright © 2011-2022 Natalia Portillo
|
// Copyright © 2011-2022 Natalia Portillo
|
||||||
// ****************************************************************************/
|
// ****************************************************************************/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// ReSharper disable VirtualMemberCallInConstructor
|
// ReSharper disable VirtualMemberCallInConstructor
|
||||||
|
|
||||||
namespace Aaru.Dto;
|
|
||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using Aaru.CommonTypes.Metadata;
|
using Aaru.CommonTypes.Metadata;
|
||||||
|
|
||||||
|
namespace Aaru.Dto;
|
||||||
|
|
||||||
/// <summary>DTO for known device</summary>
|
/// <summary>DTO for known device</summary>
|
||||||
public class DeviceDto : DeviceReportV2
|
public class DeviceDto : DeviceReportV2
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
namespace Aaru.Dto;
|
|
||||||
|
|
||||||
using Aaru.CommonTypes.Enums;
|
using Aaru.CommonTypes.Enums;
|
||||||
|
|
||||||
|
namespace Aaru.Dto;
|
||||||
|
|
||||||
/// <summary>DTO for iNES/NES 2.0 headers</summary>
|
/// <summary>DTO for iNES/NES 2.0 headers</summary>
|
||||||
public class NesHeaderDto
|
public class NesHeaderDto
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -30,10 +30,10 @@
|
|||||||
// Copyright © 2011-2022 Natalia Portillo
|
// Copyright © 2011-2022 Natalia Portillo
|
||||||
// ****************************************************************************/
|
// ****************************************************************************/
|
||||||
|
|
||||||
namespace Aaru.Dto;
|
|
||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace Aaru.Dto;
|
||||||
|
|
||||||
/// <summary>DTO for database synchronization.</summary>
|
/// <summary>DTO for database synchronization.</summary>
|
||||||
public class SyncDto
|
public class SyncDto
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user