From 0e0f78aaa2652966009d73a95d689bcbd5f58ae2 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Thu, 6 Jun 2024 15:24:37 +0200 Subject: [PATCH] =?UTF-8?q?Umbenennung=20von=20`BaseDto`=20in=20`BaseDTO`?= =?UTF-8?q?=20f=C3=BCr=20eine=20konsistente=20Namensgebung.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DigitalData.Core.DTO/BaseDto.cs | 2 +- DigitalData.Core.Tests/DTO/BaseDtoTest.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DigitalData.Core.DTO/BaseDto.cs b/DigitalData.Core.DTO/BaseDto.cs index 747c521..97a0620 100644 --- a/DigitalData.Core.DTO/BaseDto.cs +++ b/DigitalData.Core.DTO/BaseDto.cs @@ -5,7 +5,7 @@ /// /// The type of the identifier. /// The identifier of the DTO. - public record BaseDto(TId Id) where TId : notnull + public record BaseDTO(TId Id) where TId : notnull { /// /// Returns the hash code for this instance, based on the identifier. diff --git a/DigitalData.Core.Tests/DTO/BaseDtoTest.cs b/DigitalData.Core.Tests/DTO/BaseDtoTest.cs index d9bda02..14bf03a 100644 --- a/DigitalData.Core.Tests/DTO/BaseDtoTest.cs +++ b/DigitalData.Core.Tests/DTO/BaseDtoTest.cs @@ -4,7 +4,7 @@ namespace DigitalData.Core.Tests.DTO { public class BaseDtoTest { - public record SampleDto(int Id) : BaseDto(Id); + public record SampleDto(int Id) : BaseDTO(Id); [Test] public void EntitiesWithSameIdShouldBeEqual()