Skip to content

Commit

Permalink
refactor: pass the entire identity to base ctor
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaVetnic committed Jan 24, 2024
1 parent f2b917a commit 622e82e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
namespace Backbone.Modules.Devices.Application.Identities.Queries.GetIdentity;
public class GetIdentityResponse : IdentitySummaryDTO
{
public GetIdentityResponse(Identity identity) : base(identity.Address, identity.ClientId, identity.PublicKey, identity.IdentityVersion, identity.CreatedAt, identity.Devices, identity.TierId) { }
public GetIdentityResponse(Identity identity) : base(identity) { }
}

0 comments on commit 622e82e

Please sign in to comment.