16 lines
429 B
C#
16 lines
429 B
C#
using DigitalData.UserManager.Application.DTOs.Module;
|
|
using DigitalData.UserManager.Application.DTOs.User;
|
|
|
|
namespace DigitalData.UserManager.Application.DTOs.ModuleOfUser
|
|
{
|
|
public record ModuleOfUserReadDto(
|
|
int Id,
|
|
int UserId,
|
|
int ModuleId,
|
|
string? Comment,
|
|
string? AddedWho,
|
|
string? ChangedWho,
|
|
UserReadDto User,
|
|
ModuleDto? Module
|
|
);
|
|
} |