WorkFlow/WorkFlow.Application/DTO/ProfileControlsTF/ProfileControlsTFCreateDto.cs

14 lines
729 B
C#

namespace WorkFlow.Application.DTO.ProfileControlsTF
{
public record ProfileControlsTFCreateDto(
int ProfileId,
int UserId,
long ObjId,
string ObjType,
string AttrName,
string CtrlType,
string CtrlCaption,
bool Mandatory,
bool ReadOnly,
string? ChoiceList = null) : BaseCreateDto;
}