BackupRestoreResult
Namespace: Meshmakers.Octo.Runtime.Contracts.Blueprints
Result of a backup restore operation
public class BackupRestoreResult
Inheritance Object → BackupRestoreResult
Properties
Success
Whether the restore was successful
public bool Success { get; set; }
Property Value
EntitiesRestored
Number of entities restored
public int EntitiesRestored { get; set; }
Property Value
Errors
Errors that occurred during restore
public List<string> Errors { get; set; }
Property Value
Warnings
Warnings generated during restore
public List<string> Warnings { get; set; }
Property Value
RestoredBackup
The backup that was restored
public BackupInfo RestoredBackup { get; set; }
Property Value
Constructors
BackupRestoreResult()
public BackupRestoreResult()