ENEI2019-Public/api/Models/EventLoc.cs

17 lines
346 B
C#
Raw Normal View History

2018-12-12 16:43:20 +00:00
using System;
namespace api.Models
{
public class EventLoc
{
public int Id{get;set;}
public int Event{get;set;}
public string Nome{get;set;}
public double Lat{get;set;}
public double Long{get;set;}
public string Desc{get;set;}
public int PhotoId{get;set;}
}
}