using System;
using Mocha.Core;
namespace Mocha.OMS
{
public class OmsPageResponse : IOmsResponse
{
///
/// Returns the collection of s that are defined on this page.
///
/// The s that are defined on this page.
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;
}
}