source: Dev/LoggingTool/models/TeamUpSpreadsheetMessage.cs @ 5

Last change on this file since 5 was 5, checked in by jkraaijeveld, 14 years ago
File size: 863 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace 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.