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