using System.Collections;
using Chernobyl.App.Core;
namespace Chernobyl.App.Layout
{
///
/// The content displayed in a tab, its header, and in the tools menu.
///
public class Content : ViewModel
{
///
public Content(IEnumerable tools, object header, object body)
{
Tools = tools;
Header = header;
Body = body;
}
///
/// The tools or information available for use when interacting with the content.
///
public IEnumerable Tools { get; }
///
/// The content displayed as a preview to the body.
///
public object Header { get; }
///
/// The primary content to be displayed.
///
public object Body { get; }
}
}