Changed File Structure of Repository

This commit is contained in:
lukejelse04
2021-09-20 19:51:39 +01:00
parent 12aa85098c
commit ab37aa5429
55 changed files with 1 additions and 1 deletions

11
Models/ErrorViewModel.cs Normal file
View File

@ -0,0 +1,11 @@
using System;
namespace METAR_Web_App.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}

View File

@ -0,0 +1,16 @@
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<string> METAR { get; set; } = new List<string>();
public List<string> TAF { get; set; } = new List<string>();
public string ICAO { get; set; }
public bool ICAOError { get; set; } = false;
}
}