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

11 lines
505 B
C#

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