feat: Füge die Spalten ValidFrom und ValidTo zur UserRep-DTO hinzu.
This commit is contained in:
@@ -6,6 +6,8 @@ namespace DigitalData.UserManager.Application.DTOs.UserRep
|
||||
int? UserId,
|
||||
int? RepGroupId,
|
||||
int? GroupId,
|
||||
int? RepUserId
|
||||
int? RepUserId,
|
||||
DateTime? ValidFrom,
|
||||
DateTime? ValidTo
|
||||
) : BaseCreateDto();
|
||||
}
|
||||
@@ -9,9 +9,11 @@ namespace DigitalData.UserManager.Application.DTOs.UserRep
|
||||
int? UserId,
|
||||
int? GroupId,
|
||||
int? RepUserId,
|
||||
int? RepGroupId,
|
||||
int? RepGroupId,
|
||||
DateTime ValidFrom,
|
||||
DateTime ValidTo,
|
||||
string AddedWho,
|
||||
string? ChangedWho,
|
||||
string? ChangedWho,
|
||||
UserReadDto? User,
|
||||
GroupReadDto? RepGroup,
|
||||
GroupReadDto? Group,
|
||||
|
||||
@@ -6,6 +6,8 @@ namespace DigitalData.UserManager.Application.DTOs.UserRep
|
||||
int? UserId,
|
||||
int? RepGroupId,
|
||||
int? GroupId,
|
||||
int? RepUserId
|
||||
int? RepUserId,
|
||||
DateTime? ValidFrom,
|
||||
DateTime? ValidTo
|
||||
) : BaseUpdateDto();
|
||||
}
|
||||
Reference in New Issue
Block a user