Add project files.

This commit is contained in:
2022-09-14 16:26:19 -04:00
parent dd96dcd05e
commit 160f5c7130
7 changed files with 157 additions and 0 deletions

View File

@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,11 @@
namespace BinaryDad.AacpsBusAlert
{
public class BusRoute
{
public int BusNumber { get; set; }
public int SubBusNumber { get; set; }
public string Schools { get; set; }
public string Schedules { get; set; }
public string Impact { get; set; }
}
}