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