ENEI2019-Public/api/Models/EventLocVisited.cs

14 lines
329 B
C#
Raw 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
public Team Team{get;set;} //teamQRID
public EventLoc Location{get;set;} //location
public DateTime timestamp{get;set;} //time
}
}