- Vererbung von BaseDTO auf alle Erstellungs-, Lese- und Aktualisierungs-DTOs angewendet, mit Ausnahme von Module und ModuleOfUser.
11 lines
264 B
C#
11 lines
264 B
C#
using DigitalData.UserManager.Application.DTOs.Base;
|
|
|
|
namespace DigitalData.UserManager.Application.DTOs.GroupOfUser
|
|
{
|
|
public record GroupOfUserCreateDto(
|
|
int UserId,
|
|
int GroupId,
|
|
string? Comment
|
|
) : BaseCreateDto();
|
|
}
|