blob: 9027ed498dbb580dce26effc50fcd5d4fca67ed7 [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>;
responsibleOnSiteName?: string;
responsibleOnSiteDepartment?: string;
networkControl?: string;
}