WorkFlow/WorkFlow.Application/DTO/ProfileObjState/ProfileObjStateCreateDto.cs

11 lines
504 B
C#

namespace WorkFlow.Application.DTO.ProfileObjState
{
public record ProfileObjStateCreateDto(
int ProfileId,
int UsrId,
long ObjId,
int StateId,
string? State2 = null,
string? State3 = null,
string? State4 = null) : BaseCreateDto;
}