using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace LoggingTool.models { class TeamUpSpreadsheetMessage : LoggerMessage { public const int QUESTIONNAIRE = 0; public const int EVENT = 1; int type; List data; /* ************************************************************** * constructor TeamUpMessage * @description: sets the type and data-array for this messsage * **************************************************************/ public TeamUpSpreadsheetMessage(int type, List data) { this.type = type; this.data = data; } public int Type { get { return type; } } public List Data { get { return data; } } } }