refactor(Profil): dto in den Ordner DTO verschieben.

- Ordner DTO in Dto umbenennen
This commit is contained in:
2025-07-30 13:21:18 +02:00
parent 6c0f39e3ed
commit 904536bd09
36 changed files with 120 additions and 224 deletions

View File

@@ -1,4 +1,4 @@
namespace WorkFlow.Application.DTO.ProfileObjState
namespace WorkFlow.Application.Dto.ProfileObjState
{
public record ProfileObjStateCreateDto(
int ProfileId,

View File

@@ -1,8 +1,7 @@
using DigitalData.UserManager.Application.DTOs.User;
using WorkFlow.Application.DTO.Profile;
using WorkFlow.Application.DTO.State;
using WorkFlow.Application.Dto.State;
namespace WorkFlow.Application.DTO.ProfileObjState
namespace WorkFlow.Application.Dto.ProfileObjState
{
public record ProfileObjStateDto(int Id,
int ProfileId,

View File

@@ -1,9 +1,9 @@
using DigitalData.Core.Abstractions;
namespace WorkFlow.Application.DTO.ProfileObjState
namespace WorkFlow.Application.Dto.ProfileObjState
{
/// <summary>
/// This Data Transfer Object (DTO) serves as a placeholder and does not support updates.
/// </summary>
public record ProfileObjStateUpdateDto(int Id) : IUnique<int>;
public record ProfileObjStateUpdateDto(long Id) : IUnique<long>;
}