blob: 3d77915c3734980d7c177d6e4fbb5e9c1c987f39 [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;
}