aswi2021tri-musketyri-gitlab/Server/ServerApp/Connection/XMLProtocolHandler/Prediction.cs @ ce0940b5
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 |
}
|