BlueprintMigrationStepResult
Namespace: Meshmakers.Octo.Runtime.Contracts.Blueprints
Result of a single migration step
public class BlueprintMigrationStepResult
Inheritance Object → BlueprintMigrationStepResult
Properties
StepId
The step ID from the migration script
public string StepId { get; set; }
Property Value
Success
Whether the step completed successfully
public bool Success { get; set; }
Property Value
Skipped
Whether the step was skipped
public bool Skipped { get; set; }
Property Value
SkipReason
Reason for skipping (if skipped)
public string SkipReason { get; set; }
Property Value
Error
Error message if the step failed
public string Error { get; set; }
Property Value
EntitiesAffected
Number of entities affected by this step
public int EntitiesAffected { get; set; }
Property Value
Constructors
BlueprintMigrationStepResult()
Caution
Constructors of types with required members are not supported in this version of your compiler.
public BlueprintMigrationStepResult()