ENEI2019-Public/api/Models/Event.cs

25 lines
506 B
C#
Raw Permalink Normal View History

2019-02-24 02:16:08 +00:00
using System;
using System.Collections.Generic;
namespace api.Models
{
public class Event
{
public int Id{get;set;} //id
public String Nome{get;set;} //nome
public String Desc{get;set;} //descrição
2019-03-17 19:09:54 +00:00
public String imagem{get;set;}
public String horas{get;set;}
public bool aDecorrer{get;set;}
public string localizacao{get;set;}
public string notas{get;set;}
2019-03-18 17:04:50 +00:00
public string custo{get;set;}
2019-02-24 02:16:08 +00:00
}
}