blob: 27cfcee207a6c9d04cebbab8b03d56d01f3c4977 [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.SubmodelElementTypes;
12using BaSyx.Models.Core.AssetAdministrationShell.References;
13using BaSyx.Models.Core.Common;
14using System.Runtime.Serialization;
15
16namespace BaSyx.Models.Core.AssetAdministrationShell.Implementations.SubmodelElementTypes
17{
18 [DataContract]
19 public class ReferenceElement : SubmodelElement, IReferenceElement
20 {
21 public override ModelType ModelType => ModelType.ReferenceElement;
22 public IReference Value { get; set; }
23
24 public ReferenceElement() : base() { }
25 }
26}