11 lines
280 B
C#
11 lines
280 B
C#
using DigitalData.UserManager.Application.DTOs.Base;
|
|
|
|
namespace DigitalData.UserManager.Application.DTOs.UserRep
|
|
{
|
|
public record UserRepUpdateDto(
|
|
int? UserId,
|
|
int? RepGroupId,
|
|
int? GroupId,
|
|
int RepUserId
|
|
) : BaseUpdateDto();
|
|
} |