using DigitalData.UserManager.Application.DTOs.User; using WorkFlow.Application.DTO.Profile; namespace WorkFlow.Application.DTO.ProfileControlsTF { public record ProfileControlsTFDto(int Id, int ProfileId, int UserId, long ObjId, string ObjType, string AttrName, string CtrlType, string CtrlCaption, bool Mandatory, bool ReadOnly, string AddedWho, DateTime AddedWhen, string? ChoiceList = null, ProfileDto? Profile = null, UserReadDto? User = null); }