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

18 lines
617 B
C#
Executable File

using System;
using Mocha.Core;
namespace Mocha.OMS
{
public class OmsPageResponse : IOmsResponse
{
/// <summary>
/// Returns the collection of <see cref="OMSComponent" />s that are defined on this page.
/// </summary>
/// <value>The <see cref="OMSComponent" />s that are defined on this page.</value>
public OMSComponent.OMSComponentCollection Components { get; } = new OMSComponent.OMSComponentCollection();
public string Title { get; set; } = String.Empty;
public string Description { get; set; } = String.Empty;
public InstanceKey DescriptionInstance { get; set; } = InstanceKey.Empty;
}
}