feat: Füge die Spalten ValidFrom und ValidTo zur UserRep-DTO hinzu.
This commit is contained in:
parent
a9bc4f90ac
commit
770921011a
@ -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();
|
||||
}
|
||||
@ -1,5 +1,4 @@
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace DigitalData.UserManager.Domain.Entities
|
||||
{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user