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

26 lines
541 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace ThAmCo.Events.Data
{
public class Customer
{
public int Id { get; set; }
[Required]
public string Surname { get; set; }
[Required]
public string FirstName { get; set; }
[Required]
[DataType(DataType.EmailAddress)]
public string Email { get; set; }
public List<GuestBooking> Bookings { get; set; }
public bool IsDeleted { get; set; }
}
}