Constantin Ziesche | 857c7ab | 2020-02-25 11:24:51 +0100 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | * Copyright (c) 2020 Robert Bosch GmbH |
| 3 | * Author: Constantin Ziesche (constantin.ziesche@bosch.com) |
| 4 | * |
| 5 | * This program and the accompanying materials are made available under the |
| 6 | * terms of the Eclipse Public License 2.0 which is available at |
| 7 | * http://www.eclipse.org/legal/epl-2.0 |
| 8 | * |
| 9 | * SPDX-License-Identifier: EPL-2.0 |
| 10 | *******************************************************************************/ |
| 11 | using BaSyx.Models.Core.AssetAdministrationShell.Generics; |
| 12 | using BaSyx.Models.Core.AssetAdministrationShell.Generics.SubmodelElementTypes; |
| 13 | using BaSyx.Models.Core.AssetAdministrationShell.References; |
| 14 | |
| 15 | namespace BaSyx.Models.Core.AssetAdministrationShell.Implementations.SubmodelElementTypes |
| 16 | { |
| 17 | public class PublishableEvent : IPublishableEvent |
| 18 | { |
| 19 | public string Timestamp { get; set; } |
| 20 | |
| 21 | public string Message { get; set; } |
| 22 | |
| 23 | public string Originator { get; set; } |
| 24 | |
| 25 | public IReference<IEvent> EventReference { get; set; } |
| 26 | |
| 27 | public string Name { get; set; } |
| 28 | |
| 29 | public string MessageId { get; set; } |
| 30 | } |
| 31 | } |