blob: 042c675de4db45ff8a271419f06b7990d22b67cc [file] [log] [blame]
using System.Collections.Generic;
using System.Runtime.Serialization;
namespace BaSys40.Models.Core.AssetAdministrationShell.Generics
{
public interface IOperation : ISubmodelElement
{
[DataMember(EmitDefaultValue = false, IsRequired = false, Name = "in")]
List<IOperationVariable> In { get; set; }
[DataMember(EmitDefaultValue = false, IsRequired = false, Name = "out")]
List<IOperationVariable> Out { get; set; }
}
}