mocha/dotnet/Libraries/Mocha.OMS/OMSComponent.cs
2023-10-31 11:47:27 -04:00

20 lines
525 B
C#
Executable File

using System;
using Mocha.Core;
namespace Mocha.OMS
{
public abstract class OMSComponent
{
public class OMSComponentCollection
: System.Collections.ObjectModel.Collection<OMSComponent>
{
}
public InstanceKey InstanceID { get; set; } = InstanceKey.Empty;
public string Name { get; set; } = String.Empty;
public string Type { get; set; } = String.Empty;
// public OMSComponentProperty.OMSComponentPropertyCollection Properties { get; } = new OMSComponentProperty.OMSComponentPropertyCollection();
}
}