blob: c2db92d65ff4920a6bf775ee30b840d5d3f2730e [file] [log] [blame]
Constantin Ziesche857c7ab2020-02-25 11:24:51 +01001/*******************************************************************************
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*******************************************************************************/
11using BaSyx.Models.Core.AssetAdministrationShell.Generics;
Constantin Ziesche857c7ab2020-02-25 11:24:51 +010012using BaSyx.Models.Core.AssetAdministrationShell.References;
13
Constantin Ziesche08215502020-09-21 19:08:32 +020014namespace BaSyx.Models.Core.AssetAdministrationShell.Implementations
Constantin Ziesche857c7ab2020-02-25 11:24:51 +010015{
16 public class PublishableEvent : IPublishableEvent
17 {
18 public string Timestamp { get; set; }
19
20 public string Message { get; set; }
21
22 public string Originator { get; set; }
23
24 public IReference<IEvent> EventReference { get; set; }
25
26 public string Name { get; set; }
27
28 public string MessageId { get; set; }
29 }
30}