blob: 2197f9cda96b4bf3087c8ae250e52fd13764a38b [file] [log] [blame]
using BaSys40.Models.Core.Extensions.References;
using BaSys40.Models.Core.Identification;
using BaSys40.Models.Semantics;
using System.Collections.Generic;
using System.Runtime.Serialization;
namespace BaSys40.Models.Core.Views
{
public interface IView : IHasSemantics, IReferable, IModelElement
{
[DataMember(EmitDefaultValue = false, IsRequired = false, Name = "containedElements")]
List<IReference> ContainedElements { get; }
}
}