git_bsmd/nsw/Source/bsmd.database/IMessageParagraph.cs

27 lines
585 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace bsmd.database
{
/// <summary>
/// Interface to print nsw messages to a report (get text info from messages)
/// </summary>
public interface IMessageParagraph
{
string Title { get; }
string Subtitle { get; }
bool ShowChildrenAsTable { get; }
List<KeyValuePair<string, string>> MessageText { get; }
List<IMessageParagraph> ChildParagraphs { get; }
}
}