ENEI2019-Public/api/Models/EventLocVisited.cs

17 lines
369 B
C#
Raw Permalink Normal View History

2019-02-23 23:06:56 +00:00
using System;
using System.Collections.Generic;
namespace api.Models
{
public class EventLocVisited
{
public int Id{get;set;} //id
2019-03-06 19:17:36 +00:00
public Team Team{get;set;} //team
2019-02-23 23:06:56 +00:00
public EventLoc Location{get;set;} //location
public DateTime timestamp{get;set;} //time
2019-03-18 17:55:02 +00:00
public Boolean complete{get;set;}
2019-03-22 01:43:02 +00:00
2019-02-23 23:06:56 +00:00
}
}