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

18 lines
335 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 Staffing
{
public int StaffId { get; set; }
public Staff Staff { get; set; }
public int EventId { get; set; }
public Event Event { get; set; }
}
}