refactor(UserRep): nullable related propoerties gemacht.

- RepUserId von UserRepCreateDto löschbar gemacht.
 - ChangedWho von UserRepReadDto löschbar gemacht.
 - RepUserId von UserRepUpdateDto löschbar gemacht.
This commit is contained in:
Developer 02
2024-11-06 10:03:10 +01:00
parent b3131637ab
commit 5df5cc555a
7 changed files with 7 additions and 39 deletions

View File

@@ -6,6 +6,6 @@ namespace DigitalData.UserManager.Application.DTOs.UserRep
int? UserId,
int? RepGroupId,
int? GroupId,
int RepUserId
int? RepUserId
) : BaseCreateDto();
}

View File

@@ -11,7 +11,7 @@ namespace DigitalData.UserManager.Application.DTOs.UserRep
int? RepUserId,
int? RepGroupId,
string AddedWho,
string ChangedWho,
string? ChangedWho,
UserReadDto? User,
GroupReadDto? RepGroup,
GroupReadDto? Group,

View File

@@ -6,6 +6,6 @@ namespace DigitalData.UserManager.Application.DTOs.UserRep
int? UserId,
int? RepGroupId,
int? GroupId,
int RepUserId
int? RepUserId
) : BaseUpdateDto();
}