20 lines
927 B
C#
20 lines
927 B
C#
using DigitalData.UserManager.Application.DTOs.User;
|
|
using WorkFlow.Application.DTO.Profile;
|
|
using WorkFlow.Application.DTO.State;
|
|
|
|
namespace WorkFlow.Application.DTO.ProfileObjState
|
|
{
|
|
public record ProfileObjStateDto(int Id,
|
|
int ProfileId,
|
|
int UserId,
|
|
long ObjId,
|
|
int StateId,
|
|
string AddedWho,
|
|
DateTime AddedWhen,
|
|
string? State2 = null,
|
|
string? State3 = null,
|
|
string? State4 = null,
|
|
ProfileDto? Profile = null,
|
|
UserReadDto? User = null,
|
|
StateDto? State = null);
|
|
} |