blob: ae2ab4e9406acdc95fb2bd8b8ed66f0cfbcd2d85 [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 System.Runtime.Serialization;
12using System.Xml.Serialization;
13
14namespace BaSyx.Models.Core.AssetAdministrationShell.Identification
15{
16 [DataContract]
17 public class AdministrativeInformation
18 {
19 [DataMember(Name = "version")]
20 [XmlElement("version")]
21 public string Version { get; set; }
22
23 [DataMember(Name = "revision")]
24 [XmlElement("revision")]
25 public string Revision { get; set; }
26 }
27}