20 lines
392 B
C#
20 lines
392 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|||
|
namespace ThAmCo.Events.Data
|
|||
|
{
|
|||
|
public class GuestBooking
|
|||
|
{
|
|||
|
public int CustomerId { get; set; }
|
|||
|
|
|||
|
public Customer Customer { get; set; }
|
|||
|
|
|||
|
public int EventId { get; set; }
|
|||
|
|
|||
|
public Event Event { get; set; }
|
|||
|
|
|||
|
public bool Attended { get; set; }
|
|||
|
}
|
|||
|
}
|