- Vererbung von BaseDTO auf alle Erstellungs-, Lese- und Aktualisierungs-DTOs angewendet, mit Ausnahme von Module und ModuleOfUser.
12 lines
309 B
C#
12 lines
309 B
C#
using DigitalData.UserManager.Application.DTOs.Base;
|
|
|
|
namespace DigitalData.UserManager.Application.DTOs.UserRep
|
|
{
|
|
public record UserRepCreateDto(
|
|
int UserId,
|
|
int? RepGroupId,
|
|
int RightGroupId,
|
|
string AddedWho,
|
|
int RepUserId
|
|
) : BaseCreateDto();
|
|
} |