9 lines
209 B
C#
9 lines
209 B
C#
namespace DigitalData.UserManager.Application.DTOs.UserRep
|
|
{
|
|
public record UserRepUpdateDto(
|
|
int UserId,
|
|
int? RepGroupId,
|
|
int RightGroupId,
|
|
int RepUserId
|
|
);
|
|
} |