Y2S1-Web_Apps_and_Services/ThAmCo.Events/Data/GuestBooking.cs

20 lines
392 B
C#
Raw Permalink Normal View History

2020-06-07 21:36:12 +00:00
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; }
}
}