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