Projekt

Obecné

Profil

Stáhnout (404 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6
using System.Xml.Serialization;
7

    
8
namespace ServerApp.Connection.XMLProtocolHandler
9
{
10
    public class Prediction
11
    {
12
        [XmlElement]
13
        public Date dateTime;
14

    
15
        [XmlArray("rushLevels")]
16
        [XmlArrayItem("rushLevel")]
17
        public double[] predictions;
18
    }
19
}
(3-3/7)