refactor: Ersetzte 'usrId' durch 'userId'.

This commit is contained in:
Developer 02
2024-10-24 15:22:32 +02:00
parent ca94368d0b
commit 22f69589c9
10 changed files with 20 additions and 20 deletions

View File

@@ -2,7 +2,7 @@
{
public record ProfileControlsTFCreateDto(int Id,
int ProfileId,
int UsrId,
int UserId,
long ObjId,
string ObjType,
string AttrName,

View File

@@ -5,7 +5,7 @@ namespace WorkFlow.Application.DTO.ProfileControlsTF
{
public record ProfileControlsTFDto(int Id,
int ProfileId,
int UsrId,
int UserId,
long ObjId,
string ObjType,
string AttrName,

View File

@@ -2,7 +2,7 @@
{
public record ProfileObjStateCreateDto(
int ProfileId,
int UsrId,
int UserId,
long ObjId,
int StateId,
string? State2 = null,

View File

@@ -6,7 +6,7 @@ namespace WorkFlow.Application.DTO.ProfileObjState
{
public record ProfileObjStateDto(int Id,
int ProfileId,
int UsrId,
int UserId,
long ObjId,
int StateId,
string AddedWho,