ENEI2019-Public/api/Models/Event.cs

15 lines
287 B
C#
Raw Normal View History

2018-12-12 16:43:20 +00:00
using System;
2019-02-14 17:25:19 +00:00
using System.Collections.Generic;
2018-12-12 16:43:20 +00:00
namespace api.Models
{
public class Event
{
public int Id{get;set;}
public string Nome{get;set;}
public string Desc{get;set;}
2019-02-14 17:25:19 +00:00
public ICollection<EventLoc> Locations{get;set;}
2018-12-12 16:43:20 +00:00
}
}