e.g. 3.7 The GuestResponse Domain Class

This commit is contained in:
Jason Zhu 2021-07-14 00:01:12 +10:00
parent 10af21fb9b
commit 110afd3591
2 changed files with 89 additions and 79 deletions

View File

@ -0,0 +1,10 @@
namespace PartyInvites.Models
{
public class GuestResponse
{
public string Name { get; set; }
public string Email { get; set; }
public string Phone { get; set; }
public bool? WillAttend { get; set; }
}
}

View File

@ -120,6 +120,7 @@
<Compile Include="Global.asax.cs">
<DependentUpon>Global.asax</DependentUpon>
</Compile>
<Compile Include="Models\GuestResponse.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
@ -161,7 +162,6 @@
</ItemGroup>
<ItemGroup>
<Folder Include="App_Data" />
<Folder Include="Models"/>
</ItemGroup>
<ItemGroup>
<Content Include="fonts\glyphicons-halflings-regular.woff2" />