using DigitalData.UserManager.Application.DTOs.Base; namespace DigitalData.UserManager.Application.DTOs.UserRep { public record UserRepCreateDto( int? UserId, int? RepGroupId, int? GroupId, int RepUserId ) : BaseCreateDto(); }