using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using libmetar.Services; namespace METAR_Web_App.Models { public class WeatherInformation { public List METAR { get; set; } = new List(); public List TAF { get; set; } = new List(); public string ICAO { get; set; } public bool ICAOError { get; set; } = false; } }