import { ResourceTypeEnum } from './ResourceTypeEnum';
/** Migration */
export interface Migration {
    /** The planned date of the migration */
    date: string;
    /** Migration Id */
    migrationId: string;
    /** The id of the resource to migrate */
    resourceId: string;
    /** The type of the resource to migrate */
    resourceType: ResourceTypeEnum;
}
//# sourceMappingURL=Migration.d.ts.map