10 lines
250 B
C#
10 lines
250 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|