blob: 854f2bd78bb05620f36d8c4ccf17ff5fa282293e [file] [log] [blame]
/*
******************************************************************************
* Copyright 2018 PTA GmbH.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
*
* http://www.eclipse.org/legal/epl-v10.html
*
******************************************************************************
*/
import { PowerSystemResource } from './power-system-resource';
import { Step } from './step';
export class SingleGridMeasure {
id?: number;
sortorder?: number;
title?: string;
switchingObject?: string;
powerSystemResource?: PowerSystemResource;
plannedStarttimeSinglemeasure?: string;
plannedEndtimeSinglemeasure?: string;
description?: string;
gridmeasureId?: number;
_isValide ?= true;
delete?: boolean;
listSteps?: Array<Step>;
listStepsDeleted?: Array<Step>;
// TODO: ist ein Attribut der SGM und so wird es Ina auch im backend implementieren
// responsibleOnSiteName?: string;
// responsibleOnSiteDepartment?: string;
NetworkControls?: string;
}