10 lines
217 B
C#
10 lines
217 B
C#
namespace DigitalData.UserManager.Application.DTOs.GroupOfUser
|
|
{
|
|
public record GroupOfUserCreateDto(
|
|
int UserId,
|
|
int GroupId,
|
|
string? Comment,
|
|
string? AddedWho
|
|
);
|
|
}
|