Rev | Line | |
---|
[5] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 |
|
---|
| 6 | namespace LoggingTool.models
|
---|
| 7 | {
|
---|
| 8 |
|
---|
| 9 | class TeamUpSpreadsheetMessage : LoggerMessage
|
---|
| 10 | {
|
---|
| 11 | public const int QUESTIONNAIRE = 0;
|
---|
| 12 | public const int EVENT = 1;
|
---|
| 13 | int type;
|
---|
| 14 | List<String> data;
|
---|
| 15 |
|
---|
| 16 | /* **************************************************************
|
---|
| 17 | * constructor TeamUpMessage
|
---|
| 18 | * @description: sets the type and data-array for this messsage
|
---|
| 19 | * **************************************************************/
|
---|
| 20 | public TeamUpSpreadsheetMessage(int type, List<String> data)
|
---|
| 21 | {
|
---|
| 22 | this.type = type;
|
---|
| 23 | this.data = data;
|
---|
| 24 | }
|
---|
| 25 |
|
---|
| 26 | public int Type { get { return type; } }
|
---|
| 27 |
|
---|
| 28 | public List<String> Data { get { return data; } }
|
---|
| 29 | }
|
---|
| 30 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.