10 lines
236 B
C#
10 lines
236 B
C#
namespace DigitalData.UserManager.Application.DTOs.GroupOfUser
|
|
{
|
|
public record GroupOfUserUpdateDto(
|
|
int Id,
|
|
int? UserId,
|
|
int? GroupId,
|
|
string? Comment,
|
|
string? ChangedWho
|
|
);
|
|
} |