22 lines
501 B
C#
22 lines
501 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; }
|
|
|
|
List<KeyValuePair<string, string>> MessageText { get; }
|
|
|
|
List<IMessageParagraph> ChildParagraphs { get; }
|
|
|
|
}
|
|
}
|