Affecto.IdentityManagement.Commanding.Commands.UpdateRoleCommand.UpdateRoleCommand C# (CSharp) Method

UpdateRoleCommand() public method

public UpdateRoleCommand ( System.Guid id, string name, string description, string externalGroupName ) : System
id System.Guid
name string
description string
externalGroupName string
return System
        public UpdateRoleCommand(Guid id, string name, string description, string externalGroupName)
        {
            Id = id;
            Name = name;
            Description = description;
            ExternalGroupName = externalGroupName;
        }
UpdateRoleCommand