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

28 lines
583 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;
using System.Linq;
using System.Threading.Tasks;
namespace ThAmCo.Events.Data
{
public class Staff
{
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<Staffing> Staffings { get; set; }
public bool FirstAid { get; set; }
}
}