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

UpdateGroupCommand() public method

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