Type: Simple
Activity Creator

Generated Code
Simple activities extend the BaseAsyncCodeActivity, which simply runs a bit of execution logic and creates the kind of activity seen below. These types of activities do not contain any child activities.
using ...
namespace MyCompany.MyProduct.Activities
{
[LocalizedDisplayName(nameof(Resources.Addition_DisplayName))]
[LocalizedDescription(nameof(Resources.Addition_Description))]
public class Addition : ContinuableAsyncCodeActivity
{
...
}
}
Effect in UiPath Studio
Simple activities may display fields in their designers. All required input properties are added to the designer.
