Files
WorkFlow/src/WorkFlow.Application/DTO/ProfileObjState/ProfileObjStateCreateDto.cs
2025-07-30 13:21:18 +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;
}