AK.F1.Timing.Model.Session.WeatherModel.WeatherModel C# (CSharp) Метод

WeatherModel() публичный Метод

Initialises a new instance of the WeatherModel class.
public WeatherModel ( ) : AK.F1.Timing.Model.Collections
Результат AK.F1.Timing.Model.Collections
        public WeatherModel()
        {
            AirTemperature = new DoubleCollectionModel();
            TrackTemperature = new DoubleCollectionModel();
            Humidity = new DoubleCollectionModel();
            WindSpeed = new DoubleCollectionModel();
            Pressure = new DoubleCollectionModel();
            WindAngle = new DoubleCollectionModel();
            Builder = new WeatherModelBuilder(this);
        }