using DigitalData.UserManager.DataContracts.DTOs.Group; using DigitalData.UserManager.DataContracts.DTOs.User; namespace DigitalData.UserManager.DataContracts.DTOs.UserRep { public record UserRepReadDto( int Guid, int UserId, int? RepGroupId, int RightGroupId, string AddedWho, int? RepUserId, UserReadDto? User, GroupReadDto? RepGroup, GroupReadDto? RightGroup, UserReadDto? RepUser ); }