11 lines
505 B
C#
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;
|
|
} |