Skip to content

Commit

Permalink
Add missing GET IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
oskogstad committed Jul 30, 2024
1 parent ea98326 commit f6f5fa3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public sealed class GetDialogTransmissionDto

public sealed class GetDialogTransmissionSenderActorDto
{
public Guid Id { get; set; }
public DialogActorType.Values ActorType { get; set; }
public string ActorName { get; set; } = null!;
public string ActorId { get; set; } = null!;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public sealed class SearchDialogTransmissionDto

public sealed class SearchDialogTransmissionSenderActorDto
{
public Guid Id { get; set; }
public DialogActorType.Values ActorType { get; set; }
public string ActorName { get; set; } = null!;
public string ActorId { get; set; } = null!;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ public sealed class GetDialogTransmissionDto

public sealed class GetDialogTransmissionSenderActorDto
{
public Guid Id { get; set; }
public DialogActorType.Values ActorType { get; set; }
public string ActorName { get; set; } = null!;
public string ActorId { get; set; } = null!;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ public sealed class SearchDialogTransmissionDto

public sealed class SearchDialogTransmissionSenderActorDto
{
public Guid Id { get; set; }
public DialogActorType.Values ActorType { get; set; }
public string ActorName { get; set; } = null!;
public string ActorId { get; set; } = null!;
Expand Down

0 comments on commit f6f5fa3

Please sign in to comment.