blob: c240bb6e9d9d54967f095082fec7197f942fcc3a [file] [log] [blame]
using BaSys40.API.ServiceProvider;
using BaSys40.Models.Core.AssetAdministrationShell.Generics;
namespace BaSys40.API.AssetAdministrationShell
{
public interface IConnectableProperty
{
IPropertyDescription Property { get; }
event SetPropertyValueHandler SetPropertyValueHandler;
event GetPropertyValueHandler GetPropertyValueHandler;
IValue GetLocalValue();
void SetLocalValue(IValue value);
IValue GetRemoteValue();
void SetRemoteValue(IValue value);
}
}