WorkFlow/WorkFlow.Application/DTO/ProfileControlsTF/ProfileControlsTFCreateDto.cs
2024-10-24 15:22:32 +02:00

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;
}