Move azdo assets into bootstrap directory

This commit is contained in:
Ethan Dennis
2022-08-23 09:15:23 -07:00
parent 99faa34c1c
commit c2be993076
13 changed files with 122 additions and 134 deletions
@@ -0,0 +1,15 @@
using System;
namespace Attendees
{
public class Attendee
{
public bool AddAttendee(string added)
{
if (added == "exists")
return true;
return false;
}
}
}
@@ -0,0 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
</Project>