WeatherWidget.Data.Weather.Weather C# (CSharp) Method

Weather() private method

private Weather ( string zipCode, WeatherInformation forecast ) : System
zipCode string
forecast WeatherInformation
return System
        internal Weather(string zipCode, WeatherInformation[] forecast)
        {
            _zipCode = zipCode;
            _forecast = forecast;

            _timeStamp = " ";
            _description = " ";
            _location = " ";
            _temperature = " ";
        }
Weather