11 lines
262 B
C#
11 lines
262 B
C#
namespace DigitalData.UserManager.Application.DTOs.ModuleOfUser
|
|
{
|
|
public record ModuleOfUserReadDto(
|
|
int Id,
|
|
int UserId,
|
|
int ModuleId,
|
|
string? Comment,
|
|
string? AddedWho,
|
|
string? ChangedWho
|
|
);
|
|
} |