13 lines
339 B
C#
13 lines
339 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,
|
|
DateTime? ValidFrom,
|
|
DateTime? ValidTo
|
|
) : BaseUpdateDto();
|
|
} |