Y2S1-Web_Apps_and_Services/ThAmCo.Events/Data/GuestBooking.cs
2020-06-07 22:36:12 +01:00

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; }
}
}