// -----------------------------------------------------------------------
//
// TODO: Update copyright text.
//
// -----------------------------------------------------------------------
namespace OpenTraffic.Model.SpeedFunctions
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
///
/// TODO: Update summary.
///
[Serializable]
[XmlType("FlowPoint")]
public class FlowPoint
{
[XmlAttribute(AttributeName = "Flow")]
public float Flow { get; set; }
[XmlAttribute(AttributeName = "Speed")]
public float Speed { get; set; }
public FlowPoint()
{
}
public FlowPoint(float flow, float speed)
{
this.Flow = flow;
this.Speed = speed;
}
}
}