Initial commit to Valet Labs

This commit is contained in:
David Kalmin
2022-05-10 14:32:07 -07:00
commit 54108c642b
27 changed files with 1343 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
using System;
namespace Attendees
{
public class Attendee
{
public bool AddAttendee(string added)
{
if (added == "exists")
return true;
return false;
}
}
}
+7
View File
@@ -0,0 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
</Project>